Click here to Skip to main content
15,892,222 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i m making a car comparison portal in asp.net but i need your help. i have made a page which has 9 checkbox and a compare button, after hitting compare button, control is to be transferred to a new page.
please tell me how i can access those checkbox in this new page and show the result.
kindly reply, asap, it needs to be done by tomorrow.
thanking you
Posted

First, you need to understand Http is a stateless protocol[^].

So, what you have done in previous page is not available anymore until and unless you implement something (using query strings, session, cache etc.) to have that state persisted and transferred to another page.

You can google [^]more about this, however I always fall back on MSDN documentation:

http://msdn.microsoft.com/en-us/library/6c3yckfw.ASPX[^]
 
Share this answer
 
First of all, everyone here is volunteer who work on their time. This can be urgent for you but not for others. Don't ask questions like this one as it won't help you but response will be very less.

Further, change the way you think. You are not suppose to access page controls from other pages. You have to pass values of selected checkboxes to that page. So try searching on How to: Pass Values Between ASP.NET Web Pages[^]

Try something before posting something.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900