D
David C
I have an asp.net web page that contains a GridView showing data from a
database. I have a LinkButton in one of the GridView columns that has
OnClientClick = "return opentask();" which opens a pop-up aspx page using
the following Javascript.
function opentasks(srecordid) {
var surl = 'JobTasks.aspx?rid=' + srecordid;
void window.open(surl, "_blank",
height=475,width=760,status=yes,toolbar=no,menubar=no,location=no");
return false;
}
What I would like to do is when the JobTasks.aspx (FormView) does an insert
or update I would like to refresh ( DataBind()? ) the GridView (named
gvOpenorders) on the calling page.
Is there an easy way to do this and if so, how? Thanks.
David
database. I have a LinkButton in one of the GridView columns that has
OnClientClick = "return opentask();" which opens a pop-up aspx page using
the following Javascript.
function opentasks(srecordid) {
var surl = 'JobTasks.aspx?rid=' + srecordid;
void window.open(surl, "_blank",
height=475,width=760,status=yes,toolbar=no,menubar=no,location=no");
return false;
}
What I would like to do is when the JobTasks.aspx (FormView) does an insert
or update I would like to refresh ( DataBind()? ) the GridView (named
gvOpenorders) on the calling page.
Is there an easy way to do this and if so, how? Thanks.
David