How can i get the value of a html select element inside a repeater control on button click
I have a repeater with select html inside the item template.
I could not use dropdown list as it does not support so i had to 开发者_JAVA百科build select with inside a repeater.
On button click i want get the value of the selected item.
the inside the repeater does not have runat=server.
How can i do this?
You can acces via Request.Form["DROPNAME"]
精彩评论