I have an aspx page with a GridView named gvTasks that has a linkbutton on
each row that calls up another pop-up window using the following js
function:
function openTask(id, coid)
{
var surl = "TaskEdit.aspx? id=" + id + "&coid=" + coid;
void
window.open(sur l,null,"height= 400,width=600,s tatus=yes,toolb ar=no,menubar=n o,location=no") ;
return false;
}
Since that pop-up page changes data I would like to have the GridView
refreshed when I close the TaskEdit.aspx pop-up window. Is there any way to
do this in asp.net? Thanks.
David
each row that calls up another pop-up window using the following js
function:
function openTask(id, coid)
{
var surl = "TaskEdit.aspx? id=" + id + "&coid=" + coid;
void
window.open(sur l,null,"height= 400,width=600,s tatus=yes,toolb ar=no,menubar=n o,location=no") ;
return false;
}
Since that pop-up page changes data I would like to have the GridView
refreshed when I close the TaskEdit.aspx pop-up window. Is there any way to
do this in asp.net? Thanks.
David
Comment