欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net显示页面执行时间

程序员文章站 2024-03-11 10:01:55
复制代码 代码如下:protected void application_beginrequest(object sender, eventargs e) { applic...
复制代码 代码如下:

protected void application_beginrequest(object sender, eventargs e)
{
application["starttime"] = system.datetime.now;
}

protected void application_endrequest(object sender, eventargs e)
{
system.datetime starttime = (system.datetime)application["starttime"];
system.datetime endtime = system.datetime.now;
system.timespan ts = endtime - starttime;
application["runtime"] = (convert.todouble((ts.milliseconds)) / 1000);

}

在要显示的地方: 页面执行时间:
复制代码 代码如下:

<%=convert.tostring(application["runtime"]) %>