Hello,
I'll appreciate you help, since I'm trying to perform this action for a couple of hours without success.
I have a button , let's call it "ADD NEW ROW IN GRID"
Additionally , I have 3 link buttons placed on top of grid : add new record , update record, delete record
for some reason I need my WebUserControl form to be opened not from the link of the grid itself, but using
the button "ADD NEW ROW IN GRID"
I tried to make ON CLICK event and from it I call another event
I'll appreciate you help, since I'm trying to perform this action for a couple of hours without success.
I have a button , let's call it "ADD NEW ROW IN GRID"
Additionally , I have 3 link buttons placed on top of grid : add new record , update record, delete record
for some reason I need my WebUserControl form to be opened not from the link of the grid itself, but using
the button "ADD NEW ROW IN GRID"
I tried to make ON CLICK event and from it I call another event
protected void btnAddNewRow_OnClick(object sender, ImageClickEventArgs e)
{
if (Page.IsValid)
this.btnAdd_OnClick(sender, e);
}
I get an error in this case.....
What am I missing ?
When I press the link on the grid itself , it works just fine , so what is the difference ?