Go Back   Velocity Reviews > Newsgroups > ASP Net
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

ASP Net - Listbox onSelectedIndexChanged event firing on Page Load

 
Thread Tools Search this Thread
Old 03-15-2005, 03:03 PM   #1
Default Listbox onSelectedIndexChanged event firing on Page Load


Hello,
Im somewhat new to asp.net, so bear with me.

I have created a form that has a Listbox along with 2 command buttons & a
few other non-important controls.

The command button is tied to the OnClick Event.

My problem is that when the command button is clicked, the Listbox
OnSelectedIndexChanged event gets fired before the command buttons OnClick
Event.
(I have validated the process through the debugger)

The PostBack process goes:
1. Page_Load
2. ListBox_OnSelectedIndexChanged
3. cmdSubmit_OnClick.

My Page_Load does nothing to change the listbox selections.

Also, when I first load the page, the OnSelectedIndexChanged event doesnt
get fired (which i figure to be correct) - so I figured this to be the same
as after the cmdSubmit button was pressed (since there is no activity
happening on the Listbox)

Here is my Page_Load code:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
' Add the javascript validation for the Delete
cmdDelete.Attributes.Add("onClick", "return confirmDelete();")

' This is only processed on initial page load.
If Not IsPostBack Then
SetUpHelpfulHints()
SetUpCalendars()
SetUpForm(0)
End If
End Sub.

Why is the listbox onSelectedIndexChange Event fired?
Even with that, why is it fired before the button's OnClick event?


=?Utf-8?B?UmVkR1NU?=
  Reply With Quote
Old 03-15-2005, 04:50 PM   #2
Karl Seguin
 
Posts: n/a
Default Re: Listbox onSelectedIndexChanged event firing on Page Load

Seems odd...could you simplify the page and include all the ASPX and
codebehind? My guess is that something in Init is wrongly hooked up....

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is
annoying)
http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
"RedGST" <> wrote in message
news:BEBC88E1-17B8-4BD2-9F5E-...
> Hello,
> Im somewhat new to asp.net, so bear with me.
>
> I have created a form that has a Listbox along with 2 command buttons & a
> few other non-important controls.
>
> The command button is tied to the OnClick Event.
>
> My problem is that when the command button is clicked, the Listbox
> OnSelectedIndexChanged event gets fired before the command buttons OnClick
> Event.
> (I have validated the process through the debugger)
>
> The PostBack process goes:
> 1. Page_Load
> 2. ListBox_OnSelectedIndexChanged
> 3. cmdSubmit_OnClick.
>
> My Page_Load does nothing to change the listbox selections.
>
> Also, when I first load the page, the OnSelectedIndexChanged event doesnt
> get fired (which i figure to be correct) - so I figured this to be the

same
> as after the cmdSubmit button was pressed (since there is no activity
> happening on the Listbox)
>
> Here is my Page_Load code:
>
> Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles MyBase.Load
> ' Add the javascript validation for the Delete
> cmdDelete.Attributes.Add("onClick", "return confirmDelete();")
>
> ' This is only processed on initial page load.
> If Not IsPostBack Then
> SetUpHelpfulHints()
> SetUpCalendars()
> SetUpForm(0)
> End If
> End Sub.
>
> Why is the listbox onSelectedIndexChange Event fired?
> Even with that, why is it fired before the button's OnClick event?



  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump