我在Global.asax文件中自定义了叫dbm的对象,并设为了public;
我在其它页面的简单的使用Global. 但后面并未出现我定义的对象。
请问如何才能在其他页面使用定义在Global.asax的对象?
public class Global : System.Web.HttpApplication
{
... public DBManager dbm = null;

protected void Application_Start(Object sender, EventArgs e)
{
dbm = new DBManager();
}
...
}