I work on developing web applications using C#, ASP.NET 3.5, and Ajax 2.0.
Query - While running Application_1 in Internet Explorer 7, I want to programmatically initiate the execution of Application_2 from Application_1 in a new tab, disregarding client settings.
Up until this point, I have been launching Application_2 in a new window from Application_1 using:
ScriptManager.RegisterStartupScript(this, typeof(Page), UniqueID, "window.open('theurl',' width=800, height=500');", true);
I am seeking a similar solution to open a new tab instead.