C# – Get Value selected dropdownlist option

asp.netcjquery

I have Drop Down List control and add dynamic add option into Dropdownlist but But when I get value option return string empty

please help me
thanks

Best Answer

Use following code: Request.Form[ddl.UniqueID]

The code above allows to get value of selected option.