We have a web app for authentication, when the user pass this step this application opens another applicacion using this javascript
Public Sub Openwindow(ByVal PagePath As String)
Dim pClientScript As String
pClientScript = "<script language=JavaScript> "
pClientScript += " window.open(" & Chr(34) & PagePath & Chr(34) & "," & Chr(34) & "_blank" & Chr(34) & "," & Chr(34) & "width=790,height=550,top=113,left=156,location=0,menubar=0,resizable=1,toolbar=0,titlebar=0,scrollbars=1" & Chr(34)
pClientScript += " )</script>"
RegisterStartupScript("PaginaDestino", pClientScript)
End Sub
Our problems is that when the other windows open, It show the URL with the paramaters as a title, we are looking for some trick to hide it?
Go to the complete details ...