i have used following code in my mobile web application.
This code is on my mobilepage.aspx
AutoPostBack="True">
This code is on my web.config
i want ot DropDownList1.Selectedvalue on DropDownList1_SelectedIndexChanged event. how can i do?
please help me.
vijayPosted Jun 7, 2010, 2:20 AM
Thanks for replay
bat this code not working for mobile.net.
Protected void DropDownList1_SelectedIndexChanged
{
string result = string.empty;
result =
}
Biswa Pujarini MohapatraPosted Jun 3, 2010, 10:06 AM
If you want to get the selected value on selection change refer the below code
Protected void DropDownList1_SelectedIndexChanged
{
string result = string.empty;
result =
}
for more details please Click here
If this is useful please accept this answer