Click here to Skip to main content
15,897,315 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have an dashboard portal in mvc4 razor. After logging in with my credentials, in one of the page I have a link that redirects to another portal created in asp.net C#4.0 where again I need to relogin with same credentials that I used to login mvc4 portal.
Is there any way that the 2nd login can be skipped ??????

What I have tried:

I have tried implementing oAuth and SSO. but thy are not useful for this scenario
Posted
Updated 5-Apr-16 4:50am
Comments
F-ES Sitecore 5-Apr-16 7:47am    
If you don't want to implement some kind of SSO (it doesn't have to be oAuth) then you can't do this task. Your question is like asking "How do I take a shower without getting wet"
Member 11429410 5-Apr-16 8:05am    
I am new to this. Do you have any sample of this kind of implementation or can plz guide in more detail to resolve this

1 solution

set enableSessionState="true" in web.config

C#
<system.web>
      <pages enablesessionstate="true" /> 
 </system.web>


For more 
Follow
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900