Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP Files when opened by IE8 don't open

Status
Not open for further replies.

TheAgora

Programmer
Nov 22, 2010
5
US
I have started IIS on PC with Windows 7 Professional, including ASP, Request Filtering, and ISAPI exxtensions.

However, when I try to open an .asp file i get a download request and the page never opens in the browser.

What am I doing wrong - or what is it that I have not done yet.

Note: It has been 8 years since I successfully programming courses in HTML, ASP and ColdFusion
 
[ol][li]Control Panel/Administrative tools/Internet Information Services[/li][li]click on the Properties of the right click menu of the web site[/li][li]find the tab "Home Directory"[/li][li]click on the Configuration[/li][li]on the mapping tab, make sure there is an entry of ".asp"[/li][/ol]
 
All looks ok except i get "Opening ASP page causes file download dialog instead"

HELP!!!!
 
No I have not.

I am trying to run only ASP Classic web pages.

I have attached a word document that shows the script that was used as indicated from "
I have also included this sample classic .asp page that produces the download request as shown in my earlier response:

<%@ LANGUAGE = "VBSCRIPT" %>
<% OPTION EXPLICIT %>

<html>
<title></title>
<head>
<link rel="stylesheet" type="text/css" href="mystyles.css">
</head>

<body bgcolor="#008080">

<div align="center">
<table width="600">
<tr>
<!-- #Include virtual="nwind/common/header.asp" -->
</tr>

<tr>
<td valign="middle">
<!-- #Include virtual="nwind/common/navigate.asp" -->
</td>
<td width="450" valign="top">
INSERT HERE
<!-- #Include virtual="nwind/common/footer.asp" -->


</td>
</tr>



</table>
</div>

</body>
</html>
 
>No I have not.
Then, why don't you run an installation?
[tt] <path>\aspnet_regiis.exe -i[/tt]
For precision, you have to read the link posted.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top