I have a simple aspx that doesn't post back the data. This is about as simple as it gets.
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<form Runat="Server">
<b>Username:</b>
<br>
<input id="username" type="text" size="30" Runat="Server">
<p>
<b>Comments:</b>
<br>
<textarea id="comments" cols=60 rows=10 Runat="Server"></textarea>
<p>
<input type="submit" value="Add Comment" Runat="Server">
</form>
</BODY>
</HTML>
If I run this on my local host, enter data in the input boxes, then submit, the page does not return the data. I have the framework installed. In addition, I have Visual Studio.NET. I have installed the Web Development Server Setup options. What am I forgetting?
Thanks in advance.
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<form Runat="Server">
<b>Username:</b>
<br>
<input id="username" type="text" size="30" Runat="Server">
<p>
<b>Comments:</b>
<br>
<textarea id="comments" cols=60 rows=10 Runat="Server"></textarea>
<p>
<input type="submit" value="Add Comment" Runat="Server">
</form>
</BODY>
</HTML>
If I run this on my local host, enter data in the input boxes, then submit, the page does not return the data. I have the framework installed. In addition, I have Visual Studio.NET. I have installed the Web Development Server Setup options. What am I forgetting?
Thanks in advance.