User-1671279171 posted
HI,
I am facing problem with selectionList for Docomo but its working fine with other provide AU, Softbank.
When I add items at design time for the selectionList its works fine.
But when I add items dynamically at page_load It shows the page perfectly. But when I click any command button I shows a error page.
Here is the code,
if(!isPostBack){
.....
foreach (CommonService.KbnMst kbnMst in mDomainList)
{
slDomain.Items.Add(new MobileListItem(kbnMst, kbnMst.Disp, kbnMst.Disp));
}
}
I have also tried with,
slDomain.DataSource = mDomainList;
slDomain.DataBind();
same results.
Do I need to set anything at docomo.browser file under C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers
I didn't change anything for this file.
Somebody please show me a way.