Search Results

2
votes
3answers
2k views

DropdownList.selectedIndex always 0 (yes, I do have !isPostBack)

(Scroll down to bottom of post to find solution.) Got a asp.net page which contains a Datalist. Inside this datalist, there is a template containing a dropdownlist and each …
0
votes
1answer
602 views

Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions)

How am I to bubble the event caused when itemIndex is changed in a dropdownlist - so that I can use the itemindex-value in my ItemCreatedCommand-function? A solution is found at: …
1
vote

XMLHTTP POST request and System.Reflection

Try this: http://support.instantasp.co.uk/Topic4710-31-1.aspx …
0
votes

ASP.NET Ajax ErrorSys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server

Have you tried: http://forums.asp.net/t/1044963.aspx And also, try to remove the "TextBox1.Text = "aaa""-line, and see if …
1
vote

Things to keep in mind while creating a ASP.NET Mobile Web Application

Can you add some more info? If you are developing a application for all those platforms, I would guess you are creating either some sort of web-services or just a "standard" web-application? …
1
vote

Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions)

Not possible as far as I've found out - must be bubbled up to ItemCommand, and not ItemCreated-command. Thus, leaving you with handling the event, and getting the senders.parent, which is the datal …