|
-
Oct 22nd, 2009, 01:29 PM
#1
Thread Starter
Hyperactive Member
-
Oct 22nd, 2009, 02:24 PM
#2
Thread Starter
Hyperactive Member
Re: Dropdownlist with both onselectedindexchanged and onchange possible?
Got it to work: Here's how
<asp ropDownList
ID="ddlDate"
onchange="date_onchange(); return true"
runat="server"
Height="25px"
Width="200px"
OnSelectedIndexChanged="ddlDate_SelectedIndexChanged"
>
</asp ropDownList>
function date_onchange()
{
divstatus.innerHTML = "<font color = red>Please wait...";
<%= ClientScript.GetPostBackEventReference(ddlDate, string.Empty) %>;
}
-
Oct 23rd, 2009, 01:37 AM
#3
Re: [RESOLVED] Dropdownlist with both onselectedindexchanged and onchange possible?
Hey ediguy,
When you are posting code into the forum, can you remember to surround it in CODE tags (you can find it in the toolbar for entering a post), not only does it make your code easier to read, but it will also stops those smilies appearing all over your code 
Gary
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|