'WebForm_SaveScrollPositionSubmit' is undefined

  • Thread starter Thread starter Keithb
  • Start date Start date
K

Keithb

My web application works without error when running uncompiled and using
localhost on my development machine. When I publish the site and deploy it
to an IIS 6.0 web server, the user gets an error message at the bottom of
herbrowser that says "Done, but with errors." When I click on the message
icon, the detailed message is 'WebForm_SaveScrollPositionSubmit' is
undefined. This looks like an error in the automatically generated
Javascript. I have no clue as the how to troubleshoot automatically
generated code. Any ideas?

Thanks,

Keith
 
1. Does the IIS 6.0 server have the .Net Framework 2.0 installed ?

2. Have you configured the pages element in web.config to allow MaintainScrollPositionOnPostback ?

<pages maintainScrollPositionOnPostBack="True">



Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 
Back
Top