Asp. Analysis of application global object usages in net-practical skills

Source: Internet
Author: User

The example in this article describes the application global object usage in asp.net. Share to everyone for your reference. Specifically as follows:

Application is the application of global objects, shared by all. Another page can read application information, regardless of which page you are manipulating application.

Since application is shared, lock before operation and unlock after operation.

Set up data on one page:

Application.Lock (); 
Application.set ("Address", "Shanghai"); 
Application.UnLock (); 

To fetch data on another page:

string s = (string) application.get ("Address"); 
Button1.Text = s; 

Add a "Global Application Class" Global.asax, Application_Start execution when the first page of the application is accessed.

Take the example of a lot of books, "Statistics visitors", each time the server's previous content is accessed, Application_BeginRequest will execute the number + +. What's wrong with that? Large concurrent access will be very card!

Here to note: Do not use the Web site development as far as possible with application, there is little need to use it when.

I hope this article will help you with the ASP.net program design.

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.