0

私のMVC 4アプリケーションでは、次の構文でビュー上のフォームを宣言しています

@using (Html.BeginForm("Create", "Admin", FormMethod.Post, new { id = "FrmRegistration" }))

& ここにフォームの投稿アクション メソッドCreateがあります

 public ActionResult Create(VirtuOx.Models.Admin.Register AccInfo)
    {
        string errMessage = ValidateFields(AccInfo);
        ModelState.Clear();
        if (errMessage == "")
        {
            byte[] unsaltedPassword = Signin.StrToByteArray(AccInfo.Password);
            byte[] saltValue;
            byte[] saltedPassword = Signin.GeneratePassword(unsaltedPassword, out saltValue);

            //pharmacy superuser password
            byte[] PHARM_unsaltedPassword = Signin.StrToByteArray(AccInfo.SuperUserPassword ?? "");
            byte[] PHARM_saltValue;
            byte[] PHARM_saltedPassword = Signin.GeneratePassword(PHARM_unsaltedPassword, out PHARM_saltValue);

            string _membershipexpirationdate = (string)DB.ExecuteScalar("ConnectionString", "pc_GetConfigurationValue", new SqlParameter("@Code", "MembershipExpirationDate"));

            VirtuOx.Models.Customer.Register custRegister = new VirtuOx.Models.Customer.Register(AccInfo.VendorAccountID, AccInfo.UserName, Convert.ToBase64String(saltedPassword),
                                            Convert.ToBase64String(saltValue), Guid.NewGuid().ToString(), Convert.ToInt32(AccInfo.MembershipType),
                                            _membershipexpirationdate, AccInfo.FirstName, AccInfo.LastName, AccInfo.CompanyName, AccInfo.Email,
                                            AccInfo.Street, AccInfo.City, AccInfo.State, "US", AccInfo.PostalCode,
                                            AccInfo.WorkPhone ?? "", AccInfo.Fax ?? "", AccInfo.ReportFax ?? "", AccInfo.Cell ?? "", AccInfo.CustomerRole,
                                            AccInfo.PhysicianID ?? 0, AccInfo.HierarchyLevelID ?? 0, Convert.ToInt32(AccInfo.EnableHST),
                                            Convert.ToInt32(AccInfo.EnablePST), Convert.ToInt32(AccInfo.EnableHSTRecommendations),
                                            Convert.ToInt32(AccInfo.EnableDocumentationEmail), 1, 1, 1, 1, Convert.ToInt32(AccInfo.EnableWireless),
                                            (AccInfo.CustomerRole != "12" ? 0 : Convert.ToInt32(AccInfo.CompanyID)),
                                            Convert.ToBase64String(PHARM_saltedPassword), Convert.ToBase64String(PHARM_saltValue),
                                            AccInfo.ParentID ?? 0);


            WebProfile response = custRegister.RegisterCustomer();
            if (response.Type == "S")
            {
                ViewBag.SuccessMessage = response.Text;
                ModelState.Clear();                    
            }
            else
                ModelState.AddModelError("ExpAccount", response.Text);
        }
        else
        {
            ModelState.AddModelError("Exception", errMessage);
        }
        AccInfo.StateList = Common.GetStates();
        AccInfo.RoleList = Common.GetRoleTypes();
        AccInfo.CompanyList = Common.GetCustomerBranchList();
        AccInfo.ParentList = Common.GetReferenceList("PARENTID");
        AccInfo.HierarchyLevelList = Common.GetReferenceList("HIERARCHY");
        return View("~/Views/Admin/Register.cshtml", AccInfo);
    }

私のローカルマシンでは、このフォームはフォームのポストアクションメソッドCreateに対して完全に機能しています。しかし、Web サーバーにデプロイして送信ボタンをクリックすると、エラー 404 が表示されます。コードはローカルで正常に動作しているため、コードに問題はないと思います。

4

1 に答える 1

0

次のようにフォーム定義を変更することで問題を解決できました

@using (Html.BeginForm("Create", "Admin"))

FormMethod 属性と HTML 属性オブジェクトを削除しました。私の問題を解決します。しかし、この属性指定が共有ホスティング環境で 404 エラーを引き起こす仕組みがわかりませんでした。

于 2013-11-11T09:25:26.577 に答える