V
VA Handerson
I coded the simple page using ASP.NET extension.
this code is located under the virtual directory called DEVWRK. I typed
the link as blow and it works
http://localhost/DEVWRK/ASPDOTNET/SimpleHTML.aspx
but when I submit the form, I have a message saying "The page cannot be
displayed". The HTML form should post back to itself. what did I do
wrong?
------------------------------------------
<html>
<head>
<title>Simple HTML Page</title>
</head>
<body>
<form method="post" action="SimpleHTML.aspx">
<b>Username:</b>
<br><input name="username" type="Text" size="30">
<P>
<b>Comments:</b>
<br><textarea name="comments" cols="60" rows="10"></textarea>
<p>
<input type="Submit" value="Add Comment">
</form>
</body>
</html>
this code is located under the virtual directory called DEVWRK. I typed
the link as blow and it works
http://localhost/DEVWRK/ASPDOTNET/SimpleHTML.aspx
but when I submit the form, I have a message saying "The page cannot be
displayed". The HTML form should post back to itself. what did I do
wrong?
------------------------------------------
<html>
<head>
<title>Simple HTML Page</title>
</head>
<body>
<form method="post" action="SimpleHTML.aspx">
<b>Username:</b>
<br><input name="username" type="Text" size="30">
<P>
<b>Comments:</b>
<br><textarea name="comments" cols="60" rows="10"></textarea>
<p>
<input type="Submit" value="Add Comment">
</form>
</body>
</html>