hi, i am using my usercontrol in Updatepanel. i think thats why it is giving me error
Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. Details: Error parsing near '
when i remove update panel it is working fine.But i want update panel compulsory. I kept my updatepanel as it is,but tried to call function from usercontrol(Homescroll.ascs) for scrolling as
<%ScriptManager.RegisterStartupScript(this, this.GetType(),"ale", scroll(),true); %>
in which scroll() is written in Homescroll.ascs.cs.
the function is getting called but is not getting displayed.
how to use ScriptManager for calling function which is written in .cs is there any error in this or any other way to do this.
please suggest me.