本文介绍了MVC 4中的页面导航的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我是MVC 4的新手.

我不知道如何从"Global.asax"页面重定向到"index.cshtml".

我需要你的帮助.

预先感谢.

Hi All,

I am new to MVC 4.

I don''t know how to redirect to "index.cshtml" from "Global.asax" Page.

i need your help.

Thanks in advance.

推荐答案

Response.Redirect("~/<controllername>");</controllername>




or

Response.Redirect("~/<controllername>/Index");</controllername>



"controllername"是index.cshtml文件的文件夹名称.



但是,如果您不了解这些内容,我可以建议您在www.asp.net上学习教程.



''controllername'' being the foldername of your index.cshtml file.



But if you don''t know this stuff I can seriusly suggest taking a tutorial on www.asp.net



这篇关于MVC 4中的页面导航的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 01:37