I want to return a for a certain controller a blank page.
我想给某个控制器返回一个空白页。
By blank, i mean blank!. with no Site.Master contents.
空白,我是指空白!没有网站。掌握内容。
How? Thanks
如何?谢谢
3 个解决方案
#1
23
This will return an empty view
这将返回一个空视图
public ActionResult MyAction()
{
return new EmptyResult();
}
#2
0
if you want no html or content, just return null
from your action method.
如果不需要html或内容,只需从操作方法返回null即可。
#3
0
Are you wanting to return a page that does not inherit from your master page? If so then in your view page, do the below
您是否希望返回一个没有从母版页面继承的页面?如果是这样,那么在您的视图页面中,执行下面的操作。
@{
Layout = null;
}
#1
23
This will return an empty view
这将返回一个空视图
public ActionResult MyAction()
{
return new EmptyResult();
}
#2
0
if you want no html or content, just return null
from your action method.
如果不需要html或内容,只需从操作方法返回null即可。
#3
0
Are you wanting to return a page that does not inherit from your master page? If so then in your view page, do the below
您是否希望返回一个没有从母版页面继承的页面?如果是这样,那么在您的视图页面中,执行下面的操作。
@{
Layout = null;
}