用.net静态变量取代Application,速度更快
发布时间:2006-10-14 3:06:10   收集提供:gaoqian

在传统的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!

 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50