ASP.NET application works perfectly in Internet browser but in chrome it hangs on a validate page when it suppose to submit data and move to another page , it sounds like ASP.NET AJAX broken or browser compatibility !
ASP.NET page submit’s hangs up IN chrome however works in internet explorer, no error logs either , except time out ?
in network tab its running this script
<script type="text/javascript">//<![CDATA[
<!--
if(document.getElementById)
{ // IE 5 and up, NS 6 and up
var upLevel = true;
}
else if(document.layers)
{ // Netscape 4
var ns4 = true;
}
Use the chrome developer tools to find out what’s going on. There is a network tab that will show you the activity going on in Chrome, and why it’s hanging up.
I also doubt this is an asp.net issue, it sounds more like something is wrong with the application.
Update
Thanks for posting code. Now, you can use Chrome developer tools to set a breakpoint. Do that, execute the problematic action, then step through the script to find out exactly where it is hanging up. I doubt it’s on the simple if/else statement you posted, there has to be more script that comes after that.