Using ASP.Net 2.0
a. On a parent ASPX page, after a HyperLink control is clicked, I need to open a (child) page in a popup window, as modal.
b. Then when that popup window (child page) is closed, I need to get the selections from a datagrid on that popup window and refresh the parent page accordingly.
c. I have open window javascript code in a javascript.js file, which I am loading like this:
protected void Page_Load(object sender, EventArgs e)
{
ClientScript.RegisterClientScriptInclude(this.GetType(), "manualequipentryscript", "javascript.js");
lnkSearchProducts.Attributes.Add("onclick", "LaunchProductSearch();");
}
..isn't working..
How do I implement this?
( I searched the www for the past 2 hours and came up with so many results by haven't been able to get anything concrete that would help me. )
Regards, Bob