When clicking on a tab control in dnn application. In the page load event of this control i am passing the data through a query string. The session value i have created is a normal value being stored in the login page session("id") = obj.value
The dnn application is storing the session value.
string val1 = convert.Tostring(session("id"))
string val2 = convert.Tostring(session("name"))
ScriptManager.RegisterStartupScript(this, this.GetType(), "key", "window.open('
http://www.subdomain.com/sso/Defaul...?username={0}&password={1} "+ val1 +","+ val2 +"');", true);
This is how i am passing the values to the subdomain(dotnet application)