If I add this to the ASPX page:
<input id="Text1" type="text" value="Text1Value" />
I would expect to see "Text1" in the list of Request Form keys even WITHOUT setting the runat=Server property.
? request.Form.AllKeys
I realize that if I do set that propery, then I will have a server-sided HTML control that I can reference using the name "Text1," but shouldn't I be able to access the text in the text box using the following VB.NET syntax?
request.Form("Text1")