Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Custom user control is not loading....

web-app

Hello,

I developed a new custom user control, to be able to create a custom report.

I tested it on my local environment, and it works well, the report is displayed correctly.

I tried to move this control to our production server today, and the control simply won't load...

I then decided to create a simple user control, containing nothing except a response.write in the page_load (following the actual code)

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using CounterSoft.Gemini.Presenter.Base;

namespace GeminiCustomUserControls { public partial class BurnDownReport : ReportBaseControl { protected void Page_Load(object sender, EventArgs e) { Response.Write("This sentence is not visible..."); } } }

This does not help. as soon as i select the report from the report dropdown, i see nothing on screen. There's also no error logged anywhere...

Any clue what may be the cause of this? Or maybe a suggestion on how to catch the error?

Thanks,

Ron

daddio
· 1
daddio
Replies (4)
helpful
0
not helpful

Forgot to mention, this user control works on Gemini 3.5.3 (Build 2390). Our production server runs Gemini 3.5.2 (Build 2382) and the user control does not work on that version


daddio
· 1
daddio
helpful
0
not helpful

Please try to build your UC by using Gemini version 3.5.2 (build 2382) assemblies as this is the build your production server is running.


Bikram
· 1
Bikram
helpful
0
not helpful

ok, this solved it.

Does that mean that every time we upgrade gemini we will need to recompile all our custom reports?

Ron


daddio
· 1
daddio
helpful
0
not helpful

Yes, as they DLLs version will change


Mark Wing
· 9108
Mark Wing