Protected Property bvin() As String
Get
If (Not ViewState("bvin") Is Nothing) Then
Return ViewState("bvin")
End If
Return ""
End Get
Set(ByVal Value As String)
ViewState("bvin") = Value
End Set
End Property
----------------------------------------------
public string SORTBy
{
get
{
if (ViewState["SORTBy"] != null)
{
return SafeCast.ToString(ViewState["SORTBy"]);
}
return "";
}
set
{
ViewState["SORTBy"] = value;
}
}
No comments:
Post a Comment