I open another window (webform) from my main window. I suppress the toolbar and menubars for this second window. However my XP users seem to have problem .. thinking it is a pop-up window? Why? Is it because I suppress the tool-bar and menubar. It is still a webform ... not a pop-up!!!! Or am I wrong?
The form looks better with the toolbar and menu bars suppresed so I's rather have it like that... Is there a way for me to get around this without having to inform all XP users to enable pop-up blockers?
Here is how I open the second form using server-side code ...
Dim strClientCall As String
strClientCall = "<script language=javascript> "
strClientCall &= " window.open(" & "'webfrmMy.aspx?z=0" & "','frmMy','toolbar=no,menubar=no,left=225,width=490,height=625'" & ")"
strClientCall &= "</script>"
Response.Write(strClientCall)
The form looks better with the toolbar and menu bars suppresed so I's rather have it like that... Is there a way for me to get around this without having to inform all XP users to enable pop-up blockers?
Here is how I open the second form using server-side code ...
Dim strClientCall As String
strClientCall = "<script language=javascript> "
strClientCall &= " window.open(" & "'webfrmMy.aspx?z=0" & "','frmMy','toolbar=no,menubar=no,left=225,width=490,height=625'" & ")"
strClientCall &= "</script>"
Response.Write(strClientCall)