Is it possible to return to the web client a page named differently than the original classic asp page read from the web servers folder ?
F.i. a real example I would like to implement: let's say I have an classic asp called
calendar.asp
If this page is called today (Jan 6, 2010) the page returned to the client web site should be:
calendar-of-january-6-2010.asp
If the same page should be called tomorrow, the page returend to the client web site should be:
calendar-of-january-7-2010.asp
You get the picture. Based on some internal logic, return a specific named classic asp page to the web client .
Thanks for any input you might provide.
UPDATE: The specific date files in the above example do not exist physically (or I could use a redirect). I was hoping to find something like I use to return a csv file:
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "attachment; filename=export.csv"
Not the same, of course, cause this will let the client browswer prompt for the save/open box. Just something similar.