In classic Asp you could get the contents from a text box called txtCustomer in the page that is called, with Request.Form("txtCustomer").
Why can't this be done in ASP.NET(?):
Why can't this be done in ASP.NET(?):
Code:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Response.Write(Request.Form("txtCustomer"))
End Sub