I have a web application which was working well until I converted it from vs2008 to vs2010.
It has to support IE6 .I am using some jquery and javascript in my application.
so when I first run the web application in vs2010 it was fine ,except it popped up a message stating that change the following setting in IE so I changed the settings under Internet Options > Advanced > cleared the disable script debugging option.
The following error is popped up in a message box after I change the above settings in IE6.
Error:
A runtime Error has occured.
Do you wih to debug ?
Line:2
Error:syntax error
I have various confirmation boxes generated from javascript and jquery in the application.If I disable that option in IE ,I am unable to see those boxes now.
Is it some thing with the conversion from vs2008 and vs2010 or is it some thing with IE.I completely lost track here I think, I would appreciate if someone can guide me .
Just a wild guess here but you might want to check your doctype declaration. I think that VS 2008 uses
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
and vs 2010 uses the html5 declaration standard. I’m thinking that the doctype may be causing IE to run differently, e.g. not in quirks mode.