Hi Ken,
I wrote you before from a different machine, thus the HandA
Anyhow,
Here is the code..
'at the top
Protected WithEvents grdRepInvoices As System.Web.UI.WebControls.DataGrid
'then the event code
Private Sub grdRepInvoices_ItemCommand(ByVal source As Object, ByVal e As
system.Web.UI.WebControls.DataGridCommandEventArgs) Handles
grdRepInvoices.ItemCommand
Response.Write("got here")
Response.End()
end sub
Like I said, I use the same code in several pages but for some reason this
appears to never fire.
I am dumbfounded and looking for some obvious dumb mistake but can't see it
yet.
Thanks,
Shane
[quoted text, click to view] "Ken Cox [Microsoft MVP]" <BANSPAMken_cox@sympatico.ca> wrote in message
news:OqwF76FOEHA.2952@TK2MSFTNGP12.phx.gbl...
> Could you post the code that isn't working? The event handler should look
> like this:
>
> Private Sub DataGrid1_ItemDataBound _
> (ByVal sender As Object, _
> ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) _
> Handles DataGrid1.ItemDataBound
> ' Your code goes here
> End Sub
>
> VS.NET used to play tricks by removing the Handles clause.
>
>
> "HandA" <nospam@nospam.com> wrote in message
> news:eg4c00FOEHA.128@TK2MSFTNGP12.phx.gbl...
> >I have a grid control on a page that I copied from another page and
> > modified.
> > For some reason it seem my ItemData event never fires.
> >
> > I even put a break point in it and it doesn't get there.
> > I tried response.write and response.end in that event and it doesn't
> > output
> > anything.
> >
> > Any ideas?
> >
> > Thanks
> >
> >
> >
>