gurpreet wrote: |
2) we have view button in the same screen,
we are using following code to open child window , in this case child window is loosing focus.
it was not in the case of cute soft version 4.
waiting for your suggestions, thanking you.
------------------------------------------------------------------------------------------------------------------ protected void view_Clicked(object Src, EventArgs E)
{
Response.Write("<SCRIPT LANGUAGE='JavaScript'>");
Response.Write("var winprops ='height=685,width=805,top=15,left=105,scrollbars=yes,resizable=no';");
Response.Write("var win = window.open('AlViewEmailContent.aspx?co_id=" + m_sCompanyId + "', 'chkDetail1', winprops);");
Response.Write("if (parseInt(navigator.appVersion) >= 4)");
Response.Write("win.window.focus();");
Response.Write("</SCRIPT>");
}
--------------------------------------------------------------------------------------------------------------------
|
|
Can you paste the code of the
AlViewEmailContent.aspx?