Getting form field values

J

John

Hi

Is there an asp.net equivalent of the following code in the context of a
form?

for i = 1 to Request.Form.Count
strMsgInfo = strMsgInfo & Request.Form.Key(i) & ": " &
Request.Form.Item(i) & vbCrLf & vbCrLf
next

Thanks

Regards
 
A

Alex Homer

<asp:Label id="lblRequest" runat="server" />

Then, in the Page_Load event handler:

' display the values in the Request collections
lblRequest.Text &= "* QueryString collection:<br />"
For Each oValue As String In Request.QueryString
lblRequest.Text &= "&nbsp; " & oValue & " = " _
& Request.QueryString(oValue) & "<br />"
Next
lblRequest.Text &= "* Form collection:<br />"
For Each oValue As String In Request.Form
lblRequest.Text &= "&nbsp; " & oValue & " = " _
& Request.Form(oValue) & "<br />"
Next
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top