Hi
I have datagrid which is created at runtime.
I add checkboxes in datagrid also at runtime.
now i want event when i click on checkbox.
i have code like
protected void OnChangeHandler(object sender,EventArgs e)
{
// Handle the event...
}
dim chk as new checkbox
chk.Id="chk"
chk.CheckedChanged += new EventHandler(OnChangeHandler);
but this code is not working in asp.net with
vb.net.I think this code is in c#.
How can i write this code in asp.net with
vb.net?
I hope now u got my question.
Thanks
monika