Hi, I have a page on a site that when you try to click on the link, it tries to "open or save this file" instead of opening the page and I have no idea why. Any suggestions are greatly appreciated. I'm sure it's something stupid but I can't figure out why.
That normally indicates that the file extension isn't something that is recognized by the web server. For example if you create a file and give it an uncommon file extension (like file.xyz) your webserver doesn't know what type of a document (image, HTML, script) is being requested. Since it doesn't know how to process it the document will be downloaded instead.
I noticed that that happens sometimes when the browser fails to connect to the server. If that always happens you're maybe sending incorrect headers to the browser. Does it directly open after clicking or does it take a whlile?
I'll second what nico_swd said. Since other ASP pages are recognized it sounds like the script is sending out different headers. What webserver is being run? If you could publish a link to the link we might be able to spot the problem as well.