MikeWiz628
Programmer
When a user selects a report to open on my page, the page will refresh with these set of codes at the top of my file called rmscontent.aspx.net:
Response.Write("<SCRIPT Language=VBScript>" & vbCrLf)
Response.Write("window.open " & "(""" & OpenRptName & """
" & vbCrLf)
Response.Write("</SCRIPT>"
It's basically a text file. However, if the most recent was opened, then any older files won't open, only this one. It stays cached. The text files resides on the web server and if I look at that file it's the exact one the user clicked on. Your help is appreciated. Thanks in advance!
I've been reading some of the cache FAQs here, but I'm not sure if this will work in my situation.
Response.Write("<SCRIPT Language=VBScript>" & vbCrLf)
Response.Write("window.open " & "(""" & OpenRptName & """
Response.Write("</SCRIPT>"
It's basically a text file. However, if the most recent was opened, then any older files won't open, only this one. It stays cached. The text files resides on the web server and if I look at that file it's the exact one the user clicked on. Your help is appreciated. Thanks in advance!
I've been reading some of the cache FAQs here, but I'm not sure if this will work in my situation.