页面未按预期重定向 [英] Page not redirecting as intended

查看:56
本文介绍了页面未按预期重定向的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试验证输入数据,如果验证正确,请转到下一个视图.但是,我可以看到我的代码不存在于当前页面中.

I am trying to validate input data and if the validation is true, go to the next view. However, I can see my code is not existing the present page.

控制器:

public ActionResult ForgotLoginId()
        {
            return View();
        }

        [HttpPost]
        [ValidateAntiForgeryToken]
        public ActionResult ForgotLoginId(Testing ForgotLIDAuthentication)
        {
            if (ModelState.IsValid)
            {
                using(SUPRTestingDBEntities2 db = new SUPRTestingDBEntities2())
                {
                    if (obj != null)
                    {
                        Session["LoginID"] = obj.EmailID.ToString();
                        Session["EmailID"] = obj.TaxID.ToString();
                        return RedirectToAction("LIDAuthentication");

                    }
                    else if (obj == null)
                    {
                        return View();
                    }
                }          
            }
            return View();
        }        

        public ActionResult LIDAuthentication()
        {
            if (Testing.IsUserValid())
            {
                return View();
            } 
            else
            {
                return RedirectToAction("ForgotLoginID");
            }
        }

查看:

@using (Html.BeginForm("ForgotLoginID", "Corporation", FormMethod.Post))
{

    @Html.AntiForgeryToken()
    @Html.ValidationSummary(true)
    if (ViewBag.Message != null)
    {
    <div style="border: 1px solid red">
        @ViewBag.Message
    </div>
    }
<div>
<textarea name="EmailId" style="width:50%; border-color: black" required>@Html.TextAreaFor(a => a.EmailID)</textarea>
        <text>@Html.ValidationMessageFor(a => a.EmailID)</text>
<textarea name="TaxID" style="width:30%; border-color: black" required placeholder="xxxxxxxxx" maxlength="9">@Html.TextAreaFor(a => a.Password)</textarea>
        <text>@Html.ValidationMessageFor(a => a.Password)</text>
<button type="submit" style="width: 20%; color: white; background-color: deepskyblue; border-color:black" value="SubmitRequest" name="Submitbtn"><b>Submit</b></button>
</div>
}

型号:

public partial class Testing
    {
        public int LoginID { get; set; }
        [Required]
        public string EmailID { get; set; }
        [Required]
        public int TaxID { get; set; }

        public string Password { get; set; }
        [Required]
        public string CorporationName { get; set; }

        public static bool IsUserValid()
        {
            HttpContext context = HttpContext.Current;
            if (context.Session["LoginID"] != null)
            {
                return true;
            }
            else
                return false;
        }
    }

此处,页面未退出当前视图.当我尝试在Controller中的[httppost]之后插入断点时,它甚至没有命中代码.

Here, the page not exiting the current view. When I tried to insert breakpoint after [httppost] in Controller, it is not even hitting the code.

此外,我不确定为什么我的视图在字段中包含某些内容,但我不知道它是什么.不知道这是否会影响我的输出.

Also, I am not sure why my view has something in fields, I don't know what it is. Not sure if this is affecting my output.

ForgotLoginID视图

请帮助我.

推荐答案

我不确定这是否可以解决您的问题,但是您的视图代码应类似于:

I'm not sure if this will fix your problem, but your view code should look something like:

@using (Html.BeginForm("ForgotLoginID", "Corporation", FormMethod.Post))
{
    @Html.AntiForgeryToken()
    @Html.ValidationSummary(true)

    if (ViewBag.Message != null)
    {
        <div style="border: 1px solid red">
            @ViewBag.Message
        </div>
    }

    @Html.TextAreaFor(a => a.EmailID)
    @Html.ValidationMessageFor(a => a.EmailID)
    @Html.TextAreaFor(a => a.Password)
    @Html.ValidationMessageFor(a => a.Password)
    <button type="submit" style="width: 20%; color: white; background-color: deepskyblue; border-color:black" value="SubmitRequest" name="Submitbtn"><b>Submit</b></button>
}

这篇关于页面未按预期重定向的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆