So I am currently working in ASP.Net and a bit stuck.
I obtain the full html that I wish to render into the tab from a WSDL request and then need to find a way to load a new tab in the browser and display that information.
I have currently only found
string script = " <script type=\"text/javascript\"> window.open('http://www.codeproject.com/Questions/532873/Howplustopluscodeplustoplusopenplusnewplustabplusi'); </script> ";
// this.Page.ClientScript.RegisterStartupScript(typeof(Page), "alert", script);
ScriptManager.RegisterStartupScript(this, typeof(Page), "alert", script, false);
On the web however this loads a pre-defined page and not HTML I wish to define. Is there a way to do this?