请帮助解决这个问题。Viewstate 是否允许在 app_code 的类中使用?
我在 app_code 中有这段代码,但它似乎不起作用。视图状态始终设置为空。如何在 App_Code 文件夹中的类中保留 ViewState 中的值?
Public Property GridViewSortDirection() As String
Get
Return IIf(ViewState("SortDirection") = Nothing, "ASC", ViewState("SortDirection"))
End Get
Set(ByVal value As String)
ViewState("SortDirection") = value
End Set
End Property
这是设置 GridviewSortDirectio 值的代码
Public Function GetSortDirection() As String
Select Case GridViewSortDirection
Case "ASC"
GridViewSortDirection = "DESC"
Case "DESC"
GridViewSortDirection = "ASC"
End Select
Return GridViewSortDirection
End Function
然后在页面(test.aspx.vb)中调用getSortDirection