3,245
社区成员
发帖
与我相关
我的任务
分享//public class Global : System.Web.HttpApplication
public class Global :
Microsoft.SharePoint.ApplicationRuntime.SPHttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
}
protected void Application_End(object sender, EventArgs e)
{
}
protected void Session_Start(object sender, EventArgs e)
{
string login = WindowsIdentity.GetCurrent().Name;
//record it.
}
protected void Session_End(object sender, EventArgs e)
{
}
}