User475983607 posted
geetasks
How can on Check HtmlInpiut Checkbox conditionally inside Listview?
It's practically impossible to answer questions about code without the actual code. The HTML form inputs follow standards that have been around for long long time. I think you'll be interesting in learning the fundamentals; https://www.w3schools.com/html/html_forms.asp
To answer your question, read the input parameter by
name from the Request object. The browser only sends the check inputs that are checked.
<asp:ListView ID="ListView1" runat="server">
<ItemTemplate>
<input id="Checkbox1" type="checkbox" name="checkbox" value="check" />
</ItemTemplate>
</asp:ListView>
string checkboxitems = Request["checkbox"];
Most likely, you should use a standard ASP.NET checkbox server control.