LonnieJohnson
Programmer
I have an asp.net 2.0 application that opens a window for a crystal report with java script.
The code is...
My problem is that every time this window opens the user gets a prompt telling them that there are secure and none secure items on this page. The actual app is an https secured site.
Should I be using different settings in my javascript to open it as secure?
ProDev, MS Access Applications
Visit me at ==>
May God bless you beyond your imagination!!!
The code is...
Code:
Dim strRedirect As String
Dim intRecordID As Integer = gvLogsFiltered.SelectedRow.Cells(18).Text.ToString
strRedirect = "CaseLogReport.aspx?ID=" & "{command.RECORDID} = " & intRecordID
Dim strScript As StringBuilder = New StringBuilder
strScript.Append("<script language=JavaScript>")
strScript.Append("window.open('" + strRedirect + "','_new', 'toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes,left=0,top=0');")
strScript.Append("</script>")
RegisterStartupScript("subscribescript", strScript.ToString)
My problem is that every time this window opens the user gets a prompt telling them that there are secure and none secure items on this page. The actual app is an https secured site.
Should I be using different settings in my javascript to open it as secure?
ProDev, MS Access Applications
Visit me at ==>
May God bless you beyond your imagination!!!