I am developing web applications with C #, Aspnet 3.5 and Ajax 2.0.
Question. I am running Application_1 in ie7. I would like to programmatically run Application_2 from Application_1 in a new tab, no matter what client settings.
So far, I open 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 would like to do something similar to open a new tab.
Lill lansey
source share