Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图根据一些参数停止页面的其余部分加载;但不确定语法是否正确。
@if(dayRes + dayTri == 2){<text>Sorry, etc</text> @Response.End}
上面抛出了这个错误:CS1502:'System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)'的最佳重载方法匹配有一些无效参数
有任何想法吗?
您的代码尝试将 Response.End 打印到页面。
你可以写(在你的代码块中)
return;
停止运行生成的 Execute() 方法。
您还可以在代码块中将 End 作为方法调用:
Response.End();