📄 usingsvrinfo.aspx
字号:
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="gb2312" %><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
</head>
<body>
<%
' Server Info
Response.Write("<table>")
Response.Write("<tr><th>Web Server Info</th><th></th></tr>")
Response.Write("<tr><td valign=""top"">ApplicationPath:</td><td valign=""top"">" + Request.ApplicationPath + " </td></tr>")
Response.Write("<tr><td valign=""top"">Physical Application Path:</td><td valign=""top"">" + Request.PhysicalApplicationPath + " </td></tr>")
Response.Write("<tr><td valign=""top"">Physical Path:</td><td valign=""top"">" + Request.PhysicalPath + " </td></tr>")
Response.Write("<tr><td valign=""top"">Virtual Path:</td><td valign=""top"">" + Request.Path + " </td></tr>")
Response.Write("<tr><td valign=""top"">Url:</td><td valign=""top"">" + Request.Url.ToString() + " </td></tr>")
Response.Write("<tr><td valign=""top"">.NET Framework Version:</td><td valign=""top"">" + Environment.Version.ToString() + " </td></tr>")
Response.Write("<tr><td valign=""top"">OS Version:</td><td valign=""top"">" + Environment.OSVersion.ToString() + " </td></tr>")
Response.Write("<tr><td valign=""top"">System Directory:</td><td valign=""top"">" + Environment.SystemDirectory + " </td></tr>")
Response.Write("<tr><td valign=""top"">IIS Version:</td><td valign=""top"">" + Request.ServerVariables("SERVER_SOFTWARE").ToString() + " </td></tr>")
Response.Write("</table>")
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -