|
[隐藏日志]
作者:water 日期:2008-12-28
更改Google 桌面索引存放地址
作者:water 日期:2009-01-06
HTTP协议基础
作者:water 日期:2009-01-06
MIME类型简介
作者:water 日期:2009-01-06
域帐号登录验证
作者:water 日期:2009-01-04
using System.Security.Principal;
this.AppendOutput("Current User", Page.User.Identity.Name);
WindowsIdentity wi = Page.User.Identity as WindowsIdentity;
if (wi.User != null)
{
//this.AppendOutput("Identity.User.AccountDomainSid", wi.User.AccountDomainSid.ToString());
//this.AppendOutput("Identity.User.Value", wi.User.Value.ToString());
}
this.AppendOutput("Current User", Page.User.Identity.Name);
WindowsIdentity wi = Page.User.Identity as WindowsIdentity;
if (wi.User != null)
{
//this.AppendOutput("Identity.User.AccountDomainSid", wi.User.AccountDomainSid.ToString());
//this.AppendOutput("Identity.User.Value", wi.User.Value.ToString());
}



