ASP.NET MVC 4 is the fourth major version of the ASP.NET Model-View-Controller platform for web applications.
2
votes
1answer
1k views
Design pattern for maintaining different state(s) across browser tabs in a single session
I have an MVC 4 based web app. Where I provide 2 login types, 1. Employee and 2. Customer.
With Customer login, I present a dashboard and other stuff, about his orders, etc.
With Employee login, I ...
1
vote
0answers
120 views
Top Menu bar driving a sidebar sub menu
I have an application written is C# ASP.NET MVC 4 with Razor views.
I am a bit stuck on my menu structure.
As per the image above, one can see that there is a Top Menu and a Side Menu.
The ...
1
vote
0answers
62 views
Implement SSO login with or without Membership
I need to implement SSO for four different domains, say
abc.com
pqr.com
sql.com
xyz.com
Now, I have already login system for two of my applications using Membership. But now requirement is ...
0
votes
0answers
45 views
I just want to clarify things about the behavior of Session in Asp.Net MVC
The reason why I asked this is because I want to know the basic principles about the behavior of a Session object. I'm working with session variables right now and I understand that it has a major ...
0
votes
0answers
329 views
Sharing authorization logic between ASP.NET MVC 4 and WebAPI 2 projects
Pretty similar to this question here the current application that we are working on has a separate MVC 4 and WebApi 2 projects, where the MVC project is processing the user request to the WebApi which ...
0
votes
0answers
71 views
passing different models to view based on razor theme engine
I'm using a pattern similar to the one here to implement a Themed View Engine.
Basically instead of having a View folder, I have a Theme folder and inside different themes: default, red, blue, green, ...