when i am going through my project in IE only its showing errors
A runtime error has occurred Do you wish to debug?
Line 768 Error:Expected')'
Is this is regarding any script error
when i am going through my project in IE only its showing errors
A runtime error has occurred Do you wish to debug?
Line 768 Error:Expected')'
Is this is regarding any script error
Yes, it looks like you have a javascript syntax error. Check unclosed paranthesis and unclosed string literals in your client script blocks.
This might be helpful for javascript debugging in Internet Explorer.
One of the common reasons for this could be the unescaped quotes inside the string parameter of javascript handler, such as:
onmouseover='myJavascriptFun("my so called "parameter"")'
For some reason IE unlike for example FF unescapes quotes before parsing javascript, so the code above becomes
onmouseover='myJavascriptFun("my so called "parameter"")'
so the ')' is expected after the second ".
The parameter, of course, comes from a data source so it should have been escaped using htmlentities or such method.