I am working on a MVC4 sub site that will only be accessible after login, the problem is that the authentication will be done on my main site (done in MVC3).
the main site stores the user data in :
Session["UsrData"]
to carry on with development of the sub site I want to be able to simulate a login and store user data provided by me programmatically of in a config file that will refer to a test user in the database.
how can I insert the test user data into the session?