Ken, the issue was on binding
I was binding if not ispostback but not if it is postback
since grid uses paging and doesn't enable viewstate this was the problem it
seems.
Thanks,
Shane
ps. Found interesting info on this at.
http://west-wind.com/weblog/posts/211.aspx
"SStory" <> wrote in message
news:%...
> 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
>
> "Ken Cox [Microsoft MVP]" <> wrote in message
> news:...
> > 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" <> wrote in message
> > news:...
> > >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
> > >
> > >
> > >
> >
>
>