help URGENT

  • Thread starter Thread starter Vishal
  • Start date Start date
V

Vishal

Hello,

can anybody tell me VB.NET equilant for this code:

dgTemp.EditCommand += new
System.Web.UI.WebControls.DataGridCommandEventHandler
(this.DataGridSub_EditCommand)

Thanks
 
Hi Vishal,
It should be something like
AddHandler dgTemp.EditCommand, AddressOf DataGridSub_EditCommand
check if it works
HTH
srini
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top