How can i access html controls in vb.net code behind
I have an html DropDownList and i want to make a vb function onselected indexchanged to it as we do to the asp controls.
<html>
<body>
<h1>Hello sami</h1>
<form action="">
<select name="backdrop" id="background" runat="server">
<option value="random">Random</option>
<option value="red">Red</option>
<option value="green">Green</option>
<option value="reset">Reset</option>
</select><br />
<asp:Label ID="Label8" runat="server" Text="Label"></asp:Label>
</form>
</body>
</html>