Logo 
Search:

Asp.net Forum

Ask Question   UnAnswered
Home » Forum » Asp.net       RSS Feeds

App design

  Asked By: Jose    Date: Nov 04    Category: Asp.net    Views: 673
  

I am writing an asp.net web application. I usually develop vb windows
applications and am having trouble getting to grips with the
different application structure.

In particular, I would like to know what is the best way to use
global objects and instances. Everything seems to be request specific
and I am looking for a way to setup and use application level objects.

Share: 

 

1 Answer Found

 
Answer #1    Answered By: Abana Cohen     Answered On: Nov 04

ASP.net is better at managing caches than Application objects  as a rule. read up on caching if your goal of global objects is to increase performance.
www.aspng.com/.../outputcaching.aspx
www.aspng.com/.../datacaching.aspx
www.learnasp.com/freebook/learn/caching.aspx

The reason you don't read much about that is that it is better to build stateless apps but if your goal is to attach specific data to a User read up on:
docs.aspng.com/.../formsauth.aspx
Forms Authentication

 
Didn't find what you were looking for? Find more on App design Or get search suggestion and latest updates.




Tagged: