Posted on: 9/1/2015 4:11:51 PM | Views : 786

We have one application to authentica, after this step the user choice wich application to go to, we open another windows using windows.open, this is the script
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
The problem is when the windows opened, the URL show parameters it receive in plain text, for example http://172.8.15.14/?Use ...

Go to the complete details ...