2
在ASP.NET模擬,可以使用Environment.UserName
確定模擬工作?這就是說,如果該網站正在冒充,應該Environment.UserName
返回我的用戶名?如何判斷ASP.NET模擬是否正常工作?
在ASP.NET模擬,可以使用Environment.UserName
確定模擬工作?這就是說,如果該網站正在冒充,應該Environment.UserName
返回我的用戶名?如何判斷ASP.NET模擬是否正常工作?
你應該使用User.Identity.Name
:
[Authorize]
public ActionResult Foo()
{
// If we got so far it means that the user is authorized to
// execute this action according to our configuration =>
// we can work with his username
string username = User.Identity.Name;
...
}
等待,我敢肯定Identity.Name擁有的用戶名,無論模擬是否啓用。 – 2011-05-12 21:50:25