global.asax
来自「C#开发者可使用的经典案例集,源自于ASP.NET经典范例50讲」· ASAX 代码 · 共 13 行
ASAX
13 行
<%@ Import Namespace="System.Diagnostics" %>
<%@ Import Namespace="System.Security.Principal" %>
<%@ Import Namespace="System.Configuration" %>
<%@ Import Namespace="System.Web.Mail" %>
<script language="C#" runat="server">
public void WindowsAuthentication_OnAuthenticate (object sender,WindowsAuthenticationEventArgs e)
{
WindowsIdentity id = WindowsIdentity.GetCurrent();
Response.Write(id.Name);
}
</script>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?