kashyap
kashyap

Reputation: 1

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 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?

Upvotes: 0

Views: 1397

Answers (1)

Elph
Elph

Reputation: 1604

You can acces via Request.Form["DROPNAME"]

Upvotes: 0

Related Questions