Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was reviewing some ASP.NET MVC code, specifically a web.config file.

I noticed this in the appSettings section:

<add key="PreserveLoginUrl" value="true" />

  1. What does this do?
  2. When was it introduced to ASP.NET MVC?

cheers!

share|improve this question

1 Answer

up vote 8 down vote accepted

First search hit says:

When WebMatrix.WebData.dll is included in in the /bin directory of an ASP.NET MVC 4 apps, it takes over the URL for forms authentication. Adding the WebMatrix.WebData.dll assembly to your application (for example, by selecting "ASP.NET Web Pages with Razor Syntax" when using the Add Deployable Dependencies dialog) will override the authentication login redirect to /account/logon rather than /account/login as expected by the default ASP.NET MVC Account Controller. To prevent this behavior and use the URL specified already in the authentication section of web.config, you can add an appSetting called PreserveLoginUrl and set it to true

share|improve this answer
Cheers! and why would we want the WebMatrix.WebData.dll in our /bin directory? – Pure.Krome Nov 10 '12 at 12:19
I think that's for when you create a Web Pages application using WebMatrix, or when you add Web Pages as Deployable Dependency in an MVC project. I don't know why the setting gets included for a default MVC app. The assembly contains membership and security classes that can also be used in MVC. – CodeCaster Nov 10 '12 at 12:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.