获得以下例外:
No overload for method 'Write' takes 0 arguments
在
@{SessionValue = Session["PracticeId"].ToString();}
无法理解我做错了什么
答案 0 :(得分:0)
您的代码应该是这样的:
@{string SessionValue = string.Empty;}
@if(Session["PracticeId"] != null)
{
SessionValue = Session["PracticeId"].ToString();
}
您无需将SessionValue
变量赋值放在@{}
中,因为if
语句已经为您提供了服务器代码上下文。