Re: button click event being called twice on click
From: Marina (someone_at_nospam.com)
Date: 05/20/04
- Next message: Peter Afonin: "Re: Strange behavior of invisible controls"
- Previous message: Stu: "Finding if an value exists in a DD list"
- In reply to: mike parr: "button click event being called twice on click"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 20 May 2004 12:02:18 -0400
The handler for the event was probably added twice.
"mike parr" <mparr_1972@yahoo.co.uk> wrote in message
news:O4xkH8nPEHA.2468@TK2MSFTNGP11.phx.gbl...
> I have an button which calls its Click procedure twice when clicked.
> This is my code :
>
> public void btnAddToCartPersonal_Click(object sender,
> System.Web.UI.ImageClickEventArgs e)
> {
> //validate text boxes
> bool blnEmpty = false;
> string strQuantity;
>
> //clear label
> lbl1.Text = "";
>
> for (int i=0; i < dgPersonalNumbering.Items.Count; i++)
> {
> strQuantity =
> ((TextBox)dgPersonalNumbering.Items[i].FindControl("txtQuantity")).Text;
>
> if (strQuantity == "")
> {
> blnEmpty = true;
> }
> }
>
> if (blnEmpty == true)
> {
> lbl1.Text = "Please enter Quantity";
> }
>
> }
>
> Does anybody know why it is getting called twice?
>
>
> Thanks,
>
> Mike
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!
- Next message: Peter Afonin: "Re: Strange behavior of invisible controls"
- Previous message: Stu: "Finding if an value exists in a DD list"
- In reply to: mike parr: "button click event being called twice on click"
- Messages sorted by: [ date ] [ thread ]