Passung CheckBox Values Question

  • Thread starter Patrick Olurotimi Ige
  • Start date
P

Patrick Olurotimi Ige

After a user selects checkboxes and submits by clicking a button i can
retrieve the values True/False by calling the
Context.Items("Message") in the page_load of the retrieving page like
below

Sub doSubmit(ByVal Source As Object, ByVal E As EventArgs)
Context.Items.Add("Message", MessageBank.Checked)
Server.Transfer("page2.aspx")
End Sub

But what if page2.aspx contain strings like
"page2.aspx?sid=<#DataBinder>"
Whats the right thing to do if i want to retrieve those values on the
page like above i need it because i want to insert the record to a
table.
Any ideas?
 
D

Dinil

using context will be better coz it is secure than the second methos. one
can manipulate a query string not a context item.
 

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

Top