当前位置: 代码迷 >> ASP.NET >> mvc中为什么执行完Response.End() 后,程序还会继续执行?解决方法
  详细解决方案

mvc中为什么执行完Response.End() 后,程序还会继续执行?解决方法

热度:5220   发布时间:2013-02-25 00:00:00.0
mvc中为什么执行完Response.End() 后,程序还会继续执行?
mvc中为什么执行完Response.End() 后,程序还会继续执行?

------解决方案--------------------------------------------------------
探讨
比如:有多个条件
if (1==1)
{
Response.end();
return View();
}
if (2==2)
{
Response.end();
return View();
}
中间又是一大段程序
sessioin["a"]=1;
return View();

这样写可以吗
  相关解决方案