-2

得到以下异常:
No overload for method 'Write' takes 0 arguments

@{SessionValue = Session["PracticeId"].ToString();} 

无法理解我做错了什么

4

1 回答 1

0

你的代码应该是这样的:

@{string SessionValue = string.Empty;} 

@if(Session["PracticeId"] != null) 
{ 
    SessionValue = Session["PracticeId"].ToString();
} 

您不需要将SessionValue变量赋值放入,@{}因为该if语句已经为您提供了服务器代码上下文。

于 2013-07-05T06:29:36.853 回答