深圳升蓝软件
数据库开发 .Net技术  |  ASP技术 PHP技术 JSP技术 应用技术类   
Hiblue Software

用.net静态变量取代Application,速度更快


March 25,2004
在传统的ASP中,我们要用application对象去存储应用于整个application的变量。这当然会带来内存消耗的代价。在.net中,我们可以用static变量来改善它,采用static 变量在大多数时候存储的速度会比application对象快。

做法:

创建一个webApplication,假设名称为webApplication1,在Global.aspx中的Global类中增加一个静态的成员sGreeting.

public class Global : System.Web.HttpApplication

{

public static string sGreeting = "China is great!";

……

}

在WebForm1中增加一个label,名称为label1.

在page_load()中为label1的text属性赋值。

  private void Page_Load(object sender, System.EventArgs e)
  {

   Label1.Text = WebApplication1.Global.sGreeting;
  }

运行程序后将会看到China is great!
Copyright © 2001-2008 Shenzhen Hiblue Software Team All rights reserved