How do I launch a new window with server-side code?

  • Thread starter Thread starter Steve Parks
  • Start date Start date
S

Steve Parks

Using server-side code, how do I launch a new window? I have an ASP.Net
application that uses a frameset, yet I have some (crystal) reports I want
to view in a separate window. I can probably launch a window with
client-side code, but would prefer to launch it from server-side code.

Thank you.

Steve
 
Unfortunatley, there is no way to open a new window (popup) via the .NET
code. The only way to dynamically do this is to set up a literal control on
the web form and assign the javascript to that literial control.
 
Back
Top