Hi can someone please tell me where the static variables are stored in asp.net aspx page.
Is it in the view state? If so I guess you wouldn\'t want to stored big com
The static variables are stores as global variables per asp.net process.
They are not stores on view state. So if you use only one asp.net process all users see the same variables.