Classic ASP BasicsFor beginner programmers starting with "classic" ASP 3, pre-".NET." NOT for ASP.NET 1.0, 1.1, or 2.0
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Classic ASP Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
I would like to know:
if I have a group of checkbox and want to know which one are check, how can I do that without the get method beacause I don't the user to see all that? In fact what I want to do is exacltly like hotmail work, if you check a group of your mail and decide to delete them it work and you don't see anything special in the URL.
Then use Request.Form instead of Request.QueryString (if you are just using Request, asp checks the Request.QueryString collection for a value before Request.Form)
BTW: If you have a value in each (EG the item's id) input type=checkbox form tag, a commer delimited string will be sent in the post value (for each ticked checkbox - providing the checkboxes are all named the same)
Handy for a SELECT WHERE ID IN [your string] type query rather than checking for 'on' values.