F
feng
In my ASP.Net app I have a aspx page that's called by an
other page's client side JavaScript code. The problem is
that the first time this page get loaded, it will be
cached in the user's local cache and will not be refreshed
in the following calls. I checked the following calls and
I see that even the page's Page_Load method of the
codebehind will not be invoked.
I also checked that if I clear the browser's cache each
time the page get called, then the following call will be
refreshed.
My question:
1) I have many aspx pages, why only this page has this
issue:
2) What do I do to solve this problem?
Here is the client side JavaScript that calls the this
page, and the 'Open/QicWebError.aspx' is the aspx page I
am talking about:
<script language='javascript'>
window.showModalDialog
('Open/QicWebError.aspx', '_blank', 'height=380,
width=490', true);
</script>
other page's client side JavaScript code. The problem is
that the first time this page get loaded, it will be
cached in the user's local cache and will not be refreshed
in the following calls. I checked the following calls and
I see that even the page's Page_Load method of the
codebehind will not be invoked.
I also checked that if I clear the browser's cache each
time the page get called, then the following call will be
refreshed.
My question:
1) I have many aspx pages, why only this page has this
issue:
2) What do I do to solve this problem?
Here is the client side JavaScript that calls the this
page, and the 'Open/QicWebError.aspx' is the aspx page I
am talking about:
<script language='javascript'>
window.showModalDialog
('Open/QicWebError.aspx', '_blank', 'height=380,
width=490', true);
</script>