form submit

  • Thread starter Thread starter Saifee
  • Start date Start date
S

Saifee

I have 2 aspx pages
on a.aspx i have a checkboxlist control
i check some checkboxes on a.aspx and then click on submit
button to go to b.aspx
how can i check the selected checkboxes from checkbox list
control on b.aspx
pls help
 
This article could help you:
http://www.aspalliance.com/kenc/passval.aspx

Aside from that, here's another nice, simple way to pass values from one
page to another:
(VB.NET code)

'Add data to the context object before transferring
Context.Items("myParameter") = x
Server.Transfer("WebForm2.aspx")

Then, in WebForm2.aspx:

'Grab data from the context property
Dim x as Integer = CType(Context.Items("myParameter"),Integer)

Of course there are a number of ways to pass values from one page to
another, such as using the querystring, cookies, session,
context, saving to a temporary table in the database between each page, etc.
You'll have to decide which technique is best for your application.
Here are several good articles on the subject to help you decide.
http://msdn.microsoft.com/msdnmag/issues/03/04/ASPNETUserState/default.aspx

http://www.dotnetjunkies.com/tutorials.aspx?tutorialid=600

http://www.dotnetbips.com/displayarticle.aspx?id=79
 
Back
Top