2014-11-03 59 views
0

在MVC5我想他們在登錄後用戶重定向到特定視圖我想我需要改變這一行:如何將用戶重定向到登錄後查看? 。

@Html.ActionLink("Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" }) 

讓我們假設我希望它重定向到一個名爲MyView的視圖,它必須使用https。我應該在ActionLink中寫下什麼來做到這一點?

+0

你LO gin POST方法可以包含'return RedirectToAction(「AnotherAction」);'。 [請參閱文檔](http://msdn.microsoft.com/en-us/library/system.web.mvc.controller.redirecttoaction(v = vs.118).aspx) – 2014-11-03 23:49:57

回答

0

其實你需要是什麼動作

打的動作返回了不同的看法,你在登錄操作剛過所有驗證的做

Html.ActionLink("Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" }) 

現在是真實的補充一點:

return View("Your different view path");

相關問題