I trying to learn this ASP stuff. I' using IIS 5.0 on a Windows 2000 machine. I have PWS running and I think I have IIS configured correctly to run this. I have created a small .htm page with a form (see below). It will run the .asp docs provided with IIS with no problem.
<body>
<h1>Basic Input Form</h1>
<form action="basicform_process.asp" method=POST>
Keywords: <input type="Text" name="txtKeywords" size="20"><p>
<input type="Submit" name="cmdSubmit" value="Submit">
</form>
The .asp page for this is as followed:
<body>
<h1>Basic Form - Response</h1>
<p>You entered these keywords: <% = Request.Form("txtKeywords" %> </p>
<p>The cmdSubmit button's value is: <%= Request.Form("cmdSubmit" %> </p>
</body>
Every time I use the form in the .htm page it gives me the file download options. What can I do get this basic scripts to work fo me?
<body>
<h1>Basic Input Form</h1>
<form action="basicform_process.asp" method=POST>
Keywords: <input type="Text" name="txtKeywords" size="20"><p>
<input type="Submit" name="cmdSubmit" value="Submit">
</form>
The .asp page for this is as followed:
<body>
<h1>Basic Form - Response</h1>
<p>You entered these keywords: <% = Request.Form("txtKeywords" %> </p>
<p>The cmdSubmit button's value is: <%= Request.Form("cmdSubmit" %> </p>
</body>
Every time I use the form in the .htm page it gives me the file download options. What can I do get this basic scripts to work fo me?