Stick to Learning asp.net--(11)

Source: Internet
Author: User
Tags root directory
asp.net 3, server object

MachineName

ScriptTimeout

HtmlEncode ()

HtmlDecode ()

MapPath ()

UrlEncode ()

UrlDecode ()

4, the ASP.net state processing

A, Application state

Stores information that can be accessed by anyone. It is a centralized, site-wide storage variable.

The Application object is a container that can place the state variable we set for the application, which is a collection.

Every time the site started, it would run a file global.asax in the root directory. This file is often used to save the program's status code.

Example: Global.asax

<script language= "C #" runat= "Server" >

void Application_OnStart () {

application["Aspxnum"]= "Asdfas";

}

</script>

Lock and Unlock application objects:

Application.Lock ()

Application.UnLock ()

B, Session state:

The session can return a HttpSessionState object with some of the following properties and methods:

Abandon ()

Clear ()

Isnewsession

TimeOut

Initial configuration of session state, same use Global.asax file:

<script language= "C #" runat= "Server" >

void Application_OnStart () {

session["Aspxnum"]= "Asdfas";

}

</script>

C, cookies



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.