I am trying to dynamically populate a select box with Jquery and JSOn in my VB.Net ASP.Net application. The event is triggered in the selectedindexchanged of another ASP Dropdownlist in the page. I am getting my selectlist populated (thanks to http://www.codedigest.com/Articles/jQuery/224_Building_Cascading_DropDownList_in_ASPNet_Using_jQuery_and_JSON.aspx).
i am passing two values to the select box. ID and Text. The text is properly displayed in the list box. The trouble is that though i am able to get the ID part of the selected item in the select box with Request("SelectBoxname").ToString() method, i don't find any way to get the Text of the same while submitting my form.
Desperately in need of your help. Save me !