Rank: Newbie Groups: Member
Joined: 9/18/2008 Posts: 9
|
Hello. I have a Callback control in a .NET 3.5 page, together with other controls from other vendors. I have 5 functions in javascript, which i9ncludes one that calls the callback to perform some tasks on the server. When I run the page in IE, the page runs perfect, but when I run it in Firefox, the page throws an exception saying that there is an error on the server side. I captured the error on client but it doesn't let me debug the server code. At this point, I'm positively clueless, since I have tried every possible way I know to diagnose this exception.
Do you have an explanation and the way out of this exception?
Thanks in advance for your assistance.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You will need to find out what the exception is. To catch server side exception in Visual Studio, you will want to go to Debug -> Exceptions to check "Common Language Runtime Exceptions" and run the page under debugger. To catch client side exception is a big tricky on FireFox. You can check the error console first. If that does not reveal anything, you can try to comment code/html out block by block to locate the offending part.
Hope this helps.
Thanks!
|