K
Kenneth
Hi,
I have two forms, parentForm and childForm. parentForm has
a button(btn1) and a grid. childForm has a couple of
textboxes and a button.
The button on parentForm opens a new window of childForm:
btn1.Attributes("onclick")="javascript window.open(...."
In childForm a couple of textboxes are filled in and then
saved with the button using normal sql behavior.
I need some function to refresh the parentForm from the
childForm to get the parentForm to update (show) what's
been added to the grid.
Something like:
window.opener.method
that will do the same thing as
Response.Redirect("parentForm.aspx")
thus showing the added record in the grid.
Any help is appreciated.
TIA
/Kenneth
I have two forms, parentForm and childForm. parentForm has
a button(btn1) and a grid. childForm has a couple of
textboxes and a button.
The button on parentForm opens a new window of childForm:
btn1.Attributes("onclick")="javascript window.open(...."
In childForm a couple of textboxes are filled in and then
saved with the button using normal sql behavior.
I need some function to refresh the parentForm from the
childForm to get the parentForm to update (show) what's
been added to the grid.
Something like:
window.opener.method
that will do the same thing as
Response.Redirect("parentForm.aspx")
thus showing the added record in the grid.
Any help is appreciated.
TIA
/Kenneth