When I run the page that has a lot of web controls, Toolbar,Tabstrips,multipages and DataGrid and just click 2-3 times (to do postbak) in DataGrid paging no. or select DataGridItem, IE is not refresh the page and sometimes the
status bar will show "Opening page http://.../aspnet_client/system_web/1_1_4322/SmartNav.htm". and I can't do anything else.
I'm not sure this problem is concern .Net 1.1 or Smartnavigation on .Net 1.1 or IIS 6.0 on Server 2003 ?
view source show __doPostBack as
<script language="javascript">
<!--
function __doPostBack(eventTarget, eventArgument) {
var theform;
if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
theform = document.forms["Form1"];
}
else {
theform = document.Form1;
}
theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
theform.__EVENTARGUMENT.value = eventArgument;
theform.submit();
}
// -->
</script>I have your same case, But my Application doesn't work with Smart Nav any more after migrating, Have any clue.
Thanks
Camille Gaspard
I had the same problem but I used the aspnet_regiis.exe -c and re distributed the scripts seemed to fix the problem.
Allen
0 comments:
Post a Comment