Your question isn't clear.
Of course it is possible to store data without the use of static (I suspect static is wrong in any case).
Do you want to persist the value between http request/response calls. If so Google for "ASP.NET session state". This data only exists as long as the session exists, it is not suitable for long-term storage. It also takes some extra work if the system is on a load-balanced environment.
If you need long term storage, you will need to persist to database. You need to google ADO.NET for this, but you might well want to look up "LINQ To SQL" and "Entity Framework" for other persistance options that may be better suited to your needs.
[Update]
As promised in my comment:
http://msdn.microsoft.com/en-us/library/ms178581.aspx[
^]