1.

Out of ASP or ASP.NET which one is stateless?

Answer»

In Classic ASP is STATELESS i.e. no REAL state management technique is implemented. If you wish to identify the user an additional code NEEDS to be implemented

In contrast to this, .Net provides session & application state management techniques.

ASP.NET has some additional methods which can be used to persist data in addition to the Session variables, which is commonly used in classic ASP. These INCLUDE ViewState and ControlState. This means that some of the tedious work from ASP such as STORING information in hidden variables and then re-populating and updating these values with each post or get is automatically handled by ASP.NET.



Discussion

No Comment Found