预期标识符和属性访问必须分配属性或使用其值错误

时间:2011-11-14 19:26:21

标签: asp.net vb.net

使用以下代码,我得到Identifier expectedProperty access must assign property or use its value错误:

的ViewState [ “SomeKeyValue”] 这段代码有什么问题?

2 个答案:

答案 0 :(得分:2)

VB.Net使用()而不是[]作为索引器:

ViewState("SomeKey") = ...

答案 1 :(得分:2)

我认为ViewState["SomeKeyValue"]应为ViewState("SomeKeyValue")

方括号将用于c#vb使用()