0
votes
1answer
22 views

Query web.config for a key - in values

Can any one let me know how to get a bool result, verifying a value exists in a web.config's key. Scenario is, I have this tag in my website... <add key="isEnabled" value="False"/> for a ...
6
votes
1answer
119 views

System.Web.HttpContext.Current is static between requests

In my web application I'm using System.Web.HttpContext.Current and it represents the current hit context, I was wondering how its accessible from everywhere until i noticed that its a static member ! ...
5
votes
4answers
303 views

Static fields vs Session variables

So far I've been using Session to pass some variables from one page to another. For instance user role. When a user logs in to the web application the role id of the user is kept in Session and that ...
0
votes
3answers
190 views

Output static property directly on .aspx page

I want to output something like this on an aspx page (not codebehind): <asp:text id="txt1" runat="server" value="<%# Fields.FirstName %>"> Where Fields.FirstName is a static class. How do ...
-1
votes
4answers
679 views

Lifecycle of Static Variables

Is there any way to set the life cycle of a static variable - ie: how long it's kept alive before being reset? I was hoping there may be an attribute which can be applied.
2
votes
3answers
820 views

What are static C# class variables for in ASP.NET?

I know what static class variables do in a C++ class, what I'm not very clear about is the life-cycle of static class variables in a C# class used for an ASP.NET web app. Here's a code example: ...
0
votes
1answer
1k views

Neatest way to 'reset' all static variables in a .NET application

Horribleness aside, if I have a .NET webapp which has static variables scattered across multiple classes, what is neatest way to 'clear' them all back to null. Off the top of my head, it would be to ...
1
vote
3answers
1k views

ASP.NET: Application lifecycle, static variables

A class in my ASP.NET website needs to access a database table multiple times for every request. The database table should rarely change, if ever. Maybe a couple times a month. In the static ...
3
votes
3answers
4k views

Static variables in web applications

Can I use static variables in my web application ? what are the alternatives to static ? When I use static variables in pages and more than one user use the application, it makes conflict data ...
1
vote
3answers
217 views

Do all instances of the same ASPX page share the same static field?

Let's consider this page's code-behind: public partial class Products : Page { private static SomeClass SharedField; public Product() { // ... Some logic } } Do all ...
1
vote
2answers
967 views

Static variable across multiple requests

In order to improve speed of chat application, I am remembering last message id in static variable (actually, Dictionary). Howeever, it seems that every thread has own copy, because users do not get ...
13
votes
3answers
4k views

Where does static variable work in ASP.NET page?

I had an interview today and every thing was going very good, but then an interviewer asked me a question Where Does Static Variable Work in C#- At Application Level or At Page Level. I was not very ...
4
votes
4answers
9k views

What is better: Static variable V.S. Asp.NET Application Session?

Say you want to share some resource, like a class or a variable across all threads/sessions within a ASP.NET web application. What is better? 1) A static variable having thread-safe accessors to ...
0
votes
1answer
2k views

How do I prevent static member variables from being accessed by more than one request at a time in IIS?

I’m having some trouble with understanding how IIS is handling static variables on its threads. My understanding has always been that if IIS has 4 worker processes that it can handle 4 requests ...
4
votes
3answers
2k views

Static fields in an ASP.NET Webservice

Is a static variable in a webservice shared between all running invocations of the webservice on a server? In my case I want a server-wide sync-lock, and I beleive I can accomplish that with a single ...
1
vote
4answers
3k views

ASP.NET/Static class Race Condition?

I have an ASP.NET application with a lot of dynamic content. The content is the same for all users belonging to a particular client. To reduce the number of database hits required per request, I ...
23
votes
1answer
6k views

ASP.NET Application state vs a Static object

if i have a standard ASP.NET application, is there any difference between making an object static as opposed to putting the object instance in the Application state? from my understanding, both ...