Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to set a private variable?
Message
From
04/09/2008 09:17:30
 
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
C# 2.0
OS:
Vista
Network:
Windows 2008 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01344645
Message ID:
01344797
Views:
15
>>>>If there is a postback between receiving this variable and retriving it, then it would be lost and you need to save it either in ViewState or in Session or in Cockie. Otherwise you can use a class variable declared on the class level.
>>>
>>>I ended up using Session variable. So far, in my testing, it works. I sent update to the customer for testing too.
>>
>>Hi,
>>Session would work but since it's just a simple string variable and is page specific using ViewState might be a better choice in this case.
>>Regards,
>>Viv
>
>Thank you, Viv.
>
>I have to look into how to accomplish the same as thing as with Session using ViewState (I have not done work in ASP.NET for a long time).

Pretty straightforward. To save:
ViewState["myVariable"] = myVariable;
To retrieve:
myVariable = ViewState["myVariable"];
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform