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"]) %>
秒