如果存在某些届会数据,我对控制者来说是压倒一切的。 如果在核对后用户应当停下来,则储存库必须妥善工作。
protected override void Initialize(System.Web.Routing.RequestContext requestContext)
{
base.Initialize(requestContext);
if (Session["CompanyID"] != null)
{
repo.CompanyID = (long)Session["CompanyID"];
}
else
{
RedirectToAction("LogOff", "Account");
}
}
My code looks like this, but even when the RedirectToAction is invoked the controller still opens the default action and the user is not logged off. Can You recommend on how to handle this problem?
我正在以这种方式利用本届会议的数据,因为这是能够首先了解并且在此可以核实是否有这一具体数据的地方。 它是在用户记录中写的。
这一数据是数据库用户的一部分。 我已成为一个习俗成员和角色提供者。 是否有办法将这一数据添加到“User”成员名称的“User”型号中,以便能够在像用户名称一样的构造中使用这些数据?