0

How can I open a new browser tab in ASP.NET and write to it? I don't want to redirect to a page but I want to write/output the content directly from source.

Curtis White
  • 6,213
  • 12
  • 59
  • 83
  • A similar question with accepted answer and example here: http://stackoverflow.com/questions/2696680/how-to-write-javascript-to-a-separate-window – marapet May 26 '10 at 22:10

1 Answers1

1

You'll need to use JavaScript to do this then - look into window.open. Once you open a new window, you can access its document object to write the contents of it programatically.

Shawn Steward
  • 6,773
  • 3
  • 24
  • 45