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.
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.
精彩评论