1

各ページのキーワードを管理しようとしています。私はこのクラスを持っています

 public class Keyword
{
    [Key]
    [DatabaseGenerated(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption.Identity)]
    public int ID { get; set; }

    [Display(Name = "آدرس")]
    public string Address { get; set; }

    [Display(Name = "کلمات کلیدی")]
    public string KeyWords { get; set; }

    [Display(Name = "شرح صفحه")]
    public string Description { get; set; }
}

これが私のコントローラーです

[Authorize(Roles = "admins")]
    public ActionResult Create(string Address="")
    {
        Keyword keyword = db.Keywords.Where(k => k.Address == Address).FirstOrDefault();
        if (null == keyword)
        {
            keyword = new Keyword() { Address = Address };
        }
        return PartialView(keyword);
    } 

    [HttpPost]
    [Authorize(Roles = "admins")]
    public ActionResult Create(Keyword keyword)
    {
        keyword.Address = Request.UrlReferrer.PathAndQuery;
        if (db.Keywords.Count(k => k.Address == keyword.Address) > 0)
        {
            var model = db.Keywords.Where(k => k.Address == keyword.Address).FirstOrDefault();
            model.Description = keyword.Description;
            model.KeyWords = keyword.KeyWords;
            if (ModelState.IsValid)
            {
                db.Entry(model).State = EntityState.Modified;
                db.SaveChanges();
                //return Redirect(Request.UrlReferrer.AbsoluteUri);
            }
        }
        else if (ModelState.IsValid)
        {
            db.Keywords.Add(keyword);
            db.SaveChanges();
            //return Redirect(Request.UrlReferrer.AbsoluteUri);
        }

        return PartialView(keyword);
    }

これは部分的なビューです

@model Stockala.Models.Keyword

@using (Ajax.BeginForm("Create", "Keyword", new AjaxOptions() { HttpMethod = "POST", InsertionMode = InsertionMode.Replace, UpdateTargetId = "keywords-div" }))
{
    @Html.ValidationSummary(true)
    @Html.AntiForgeryToken()
    <fieldset>
        <legend>کلمات کلیدی</legend>
            <table class="fields">
        <tr>
            <td class="label">
                @Html.LabelFor(model => model.KeyWords) :
            </td>
            <td class="editor-field">
                @Html.TextBoxFor(model => model.KeyWords, new { style = "width:600px;" })
                @Html.ValidationMessageFor(model => model.KeyWords)
            </td>
        </tr>
        <tr>
            <td class="label">
                @Html.LabelFor(model => model.Description) :
            </td>
            <td class="editor-field">
                @Html.TextAreaFor(model => model.Description, new { style = "width:600px;" })
                @Html.ValidationMessageFor(model => model.Description)
            </td>
        </tr>
        <tr>
            <td colspan="2">
            <p>
                <input id="keysubmit" type="submit" value="تایید" class="button"/>
            </p>
            </td>
        </tr>
    </table>    
    </fieldset>
}

これは、_layout.chtml内で部分ビューをレンダリングする方法です

<div id="main">
        @RenderBody()
        @if (User.IsInRole("admins"))
        {
            <div id="keywords-div">
                @Html.Action("Create", "Keyword", new { Address = Request.Url.PathAndQuery })
            </div>
        }
    </div>

しかし、ここに問題があります。フォームを送信すると、キーワード コントローラーに移動し、ブラウザーには部分的なビューしか表示されませんが、フォームを送信して現在のページにとどまりたいと考えています。

4

1 に答える 1