get your current password on sharepoint(Basci Authentication )


string s = context.Request.ServerVariables["AUTH_PASSWORD"];
string u = context.Request.ServerVariables["AUTH_USER"];
if (!string.IsNullOrEmpty(s))
{
Log2("user:" + u + " pwd:" + s);
}

posted @ 2013-05-04 12:10  zyip  阅读(182)  评论(0编辑  收藏  举报