I am trying to follow along on a Udemy course on how to make an .asp page
name.html has:
<body>
<form action="Name.asp" method="post">
First Name <input type="text" name="txtFirstName"> <br>
Last Name <input type="text" name="txtLastName"> <br>
<input type="submit" name="btnSayHello" value="Say Hello">
</form>
</body>
the name.asp page has the following:
<body>
<%
Dim fn, ln
fn = Request.Form("txtFirstName")
ln = Request.Form("txtLastName")
Response.Write("Hello " " & fn & " " & ln)
%>
</body>
when I load the html page in the browser I get basically the exact text of the .asp page without values processed.
I am a total newbie to IIS but believe I have IIS running on my machine