TheWizardofInt
Well-known member
This code works in my main.aspx:
But not from any other page.
Anything that I might have as a criteria on my main page that I might need to set for the other pages and didnt?
Thanks
Code:
Public Sub ShowPend(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim sWindow As String = "mywindow"
Dim jscript As String = "<script language=JavaScript>mywindow = window.open(/gmconnect/schedule.aspx," + sWindow + ",height=350,width=532,toolbars=no,resizable=no)</script>"
Session("CalContact") = txtContact.Text
Session("OnDate") = DateString
Session("CompStat") = Session("sPassRec")
RegisterClientScriptBlock("mywindow", jscript)
End Sub
But not from any other page.
Anything that I might have as a criteria on my main page that I might need to set for the other pages and didnt?
Thanks