Yes. That is fine to retrieve the data. The problem is sending the data. I want to send random, app-specific, variable data. My own data, not data set in textboxes or dropdown combos.
It would be great If I could do this:
Sub Page_Load()
If Page.IsPostBack Then
Response.Write(Request.Form("myVariable1"))
Else
Request.Form.Add("myVariable1", data1)
Request.Form.Add("myVariable2", data2)
Request.Form.Add("myVariable3", data3)
End If
End Sub
But the Request.Form collection is readonly. If you can help me with this, you might tell me also why is that this collection is readonly. What is wrong with my logic.
Thanks again.