G
Guest
Hi. I have a hyperlink control (lnkViewLogData) which is assigned the
following attribute when the page loads...
Me.lnkViewLogData.Attributes.Add("onClick", _
"javascript:window.open('Input_New_Record_CustomerInformation.aspx?CustomerID=" & Me.lblCustomerID.Text & "','myWin','');")
As you can see, when this attribute is assigned the hyperlink is formatted
to pop open another window. The problem is that when the window opens, it
briefly displays on the screen (for 1 second) and then minimizes. Therefore
whenever users open this window they must first click the link, then click on
the new window down on their taskbar.
I'm not sure if the new window is actually MINIMIZING or it is just not
becoming the active window, but either way can anyone suggest how I can fix
this so that the new window becomes the active window and properly displays
on the user's screen? Thanks.
following attribute when the page loads...
Me.lnkViewLogData.Attributes.Add("onClick", _
"javascript:window.open('Input_New_Record_CustomerInformation.aspx?CustomerID=" & Me.lblCustomerID.Text & "','myWin','');")
As you can see, when this attribute is assigned the hyperlink is formatted
to pop open another window. The problem is that when the window opens, it
briefly displays on the screen (for 1 second) and then minimizes. Therefore
whenever users open this window they must first click the link, then click on
the new window down on their taskbar.
I'm not sure if the new window is actually MINIMIZING or it is just not
becoming the active window, but either way can anyone suggest how I can fix
this so that the new window becomes the active window and properly displays
on the user's screen? Thanks.