A
Andy G
I have an application that once you login it creates a new window using
script (see below). This window is the window the client needs to use to do
their work (don't ask why we need a window to pop up, it's a client
request). The obvious problem...POP UP BLOCKERS! I love them when I'm on
the web, but not when I'm creating an application where we need a new window
to come up client side. Any suggestions....
Thanks smart people
Dim scriptString As String
scriptString += "<script language=javascript>"
scriptString +=
"window.open('BRM/Assessment/home.aspx','Assessments','toolbar=no,
scrollbars=yes, height=800,width=840 top=100, left=200');"
scriptString += "</script>"
Me.RegisterStartupScript("Startup", scriptString)
script (see below). This window is the window the client needs to use to do
their work (don't ask why we need a window to pop up, it's a client
request). The obvious problem...POP UP BLOCKERS! I love them when I'm on
the web, but not when I'm creating an application where we need a new window
to come up client side. Any suggestions....
Thanks smart people
Dim scriptString As String
scriptString += "<script language=javascript>"
scriptString +=
"window.open('BRM/Assessment/home.aspx','Assessments','toolbar=no,
scrollbars=yes, height=800,width=840 top=100, left=200');"
scriptString += "</script>"
Me.RegisterStartupScript("Startup", scriptString)