I had populated an ASP.net dropdown list with AJAX now I need to get the Id to store in into the database in a C# method, (I\'m using LINQ)
This is my webmethod
You can't get selected value from DropDownList if you adding options in javaScript. You can try the following
DropDownList
javaScript
string selectedValue = Request.Form[ddlLanguage.UniqueID];
This question may be useful also.