null is not null error
-
hello all i am using asp.net with crystal report in my project. when i load report null is not null exception occured. it works fine on my development machine ,testing server but when i upload it to webserver it throws javasricpt exception null cannot be null message box. i have done lots of googling but i cannot find any solution. Plz help me
-
hello all i am using asp.net with crystal report in my project. when i load report null is not null exception occured. it works fine on my development machine ,testing server but when i upload it to webserver it throws javasricpt exception null cannot be null message box. i have done lots of googling but i cannot find any solution. Plz help me
When you are getting this error ?
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
hello all i am using asp.net with crystal report in my project. when i load report null is not null exception occured. it works fine on my development machine ,testing server but when i upload it to webserver it throws javasricpt exception null cannot be null message box. i have done lots of googling but i cannot find any solution. Plz help me
This is the patent NullReference error that comes to the browser. There might happen when a script is loaded which might be calling a control before actually its been rendered in the document. Thus it is always recommended to place a script either in an event.. if not any control event, use document.onload or place it below body tag. In your case, I think the html output is not rendered properly. Make sure that Crystal Report dlls are properly installed in the web server and has access to them. :)
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.