[CLOSED] How to redirect after login

Page 2 of 2 FirstFirst 12
  1. #11
    I have reproduced it with MVC4. We will investigate.
  2. #12
    Please add the following element to root web.config
    <runtime>
            <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
                <dependentAssembly>
                    <assemblyIdentity name="System.Web.Helpers"
                         publicKeyToken="31bf3856ad364e35" />
                    <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0"/>
                </dependentAssembly>
                <dependentAssembly>
                    <assemblyIdentity name="System.Web.Mvc"
                         publicKeyToken="31bf3856ad364e35" />
                    <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="4.0.0.0"/>
                </dependentAssembly>
                <dependentAssembly>
                    <assemblyIdentity name="System.Web.WebPages"
                         publicKeyToken="31bf3856ad364e35" />
                    <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0"/>
                </dependentAssembly>
            </assemblyBinding>
        </runtime>
    Mode details in the following article (see "Upgrading an ASP.NET MVC 3 Project to ASP.NET MVC 4" item #7)
    http://www.asp.net/whitepapers/mvc4-release-notes
Page 2 of 2 FirstFirst 12

Similar Threads

  1. login & response.redirect
    By svk in forum 1.x Help
    Replies: 2
    Last Post: Jan 17, 2013, 6:10 AM
  2. [CLOSED] about:After login Redirect?
    By wkcode in forum 1.x Help
    Replies: 6
    Last Post: Jan 15, 2013, 5:12 AM
  3. [CLOSED] Differences between X.Redirect and Response.Redirect
    By SouthDeveloper in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: May 10, 2012, 4:29 PM
  4. Problem to Redirect To Login Page
    By aniketyadav7 in forum 1.x Help
    Replies: 6
    Last Post: Feb 23, 2012, 7:29 AM
  5. login problem with Ext Login Control
    By Bruce2010 in forum 1.x Help
    Replies: 1
    Last Post: Nov 30, 2010, 4:35 PM

Tags for this Thread

Posting Permissions