Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
62 views

Can ASP.NET session live longer than Application

This could be a silly/lame question, especially after working so long with ASP.NET :), but I need to be sure. Is it possible to have session (that is ASP.NET session) outlive the Application (app ...
2
votes
3answers
244 views

Share an object application-wide in ASP.NET MVC3

I have an ASP.NET MVC3 web application with C# and Razor. Through a form in a View I get the Context.User.Identity.Name submitted to an action method in a Controller A. I would like to have ...
1
vote
5answers
224 views

How can I avoid using SESSION variables in CFCs when these are used for DataSource and Database Schemas?

I'm trying to refactor all of my CFCs to avoid using SESSION and APPLICATION variables (not an easy task). However, in this application, SESSION variables are used in every database call, since ...
1
vote
6answers
502 views

PHP Caching without messing with file permissions (Also, How to emulate ASP Application variables in PHP)

I'm trying to implement some kind of caching in a PHP script that will go out to many different clients/sites, which will be deployed by fairly non-technical users, using a variety of web hosts. Due ...
0
votes
5answers
120 views

Is storing List of 1000+ instance of my custom class in session a memory problem?

Is storing a list of 1000 instance of my custom class to the session variable a good approach ? My asp.net web app need multilingual support and i am storing the labels in a table.I will have ...
0
votes
1answer
146 views

Saving Data to Registry on Windows 7

I heard that Windows 7 restricts access to its registry, so that applications cannot write directly to it. Is this so? I am developing an application in C#, and I would like to be able to save ...
0
votes
2answers
102 views

Accessing application variables in DataAccesslayer (another project under same solution)

I have a solution with 3 projects.One of UI (contains web pages) and one for BL and one for DataAccess layer.Now i want to access one values stored in application variable in one class inside my ...
0
votes
4answers
66 views

Application variables and performance?

Would usage of more number of application variables affect the performance of an asp.net website ?