Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to set a private variable?
Message
De
04/09/2008 09:17:30
 
 
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Versions des environnements
Environment:
C# 2.0
OS:
Vista
Network:
Windows 2008 Server
Database:
MS SQL Server
Divers
Thread ID:
01344645
Message ID:
01344797
Vues:
16
>>>>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"];
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform