Apr 16, 2007 #1 blar9 Programmer Joined Mar 12, 2007 Messages 39 Location US dim gv as new gridview gv.datasource = dt gv.databing() How do I add to this onitemdatabound event or a created event??
dim gv as new gridview gv.datasource = dt gv.databing() How do I add to this onitemdatabound event or a created event??
Apr 16, 2007 #2 ca8msm Programmer Joined May 9, 2002 Messages 11,327 Location GB Use the AddHandler method ____________________________________________________________ Mark, [URL unfurl="true"]http://aspnetlibrary.com[/url] Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results. Upvote 0 Downvote
Use the AddHandler method ____________________________________________________________ Mark, [URL unfurl="true"]http://aspnetlibrary.com[/url] Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.
Apr 16, 2007 #3 ca8msm Programmer Joined May 9, 2002 Messages 11,327 Location GB See here for an example of how to do this as you'll need to create an event with the same signature of the event you are adding. ____________________________________________________________ Mark, [URL unfurl="true"]http://aspnetlibrary.com[/url] Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results. Upvote 0 Downvote
See here for an example of how to do this as you'll need to create an event with the same signature of the event you are adding. ____________________________________________________________ Mark, [URL unfurl="true"]http://aspnetlibrary.com[/url] Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.