how to use html checkboxes instead of asp.net checkbox and validate that are they checked or not with c#?
Without runat=server you can get the values by name
string s = Request.Form["<name>"];
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.