帮我 ! ASP.NET 中的 MVC 和 AJAX 工具包编辑器

发布于 2024-11-15 16:42:08 字数 1397 浏览 0 评论 0原文

我有视图使用 Ajax 工具包编辑器控件。

查看CreateProduct

 <fieldset>
            <legend>Product information</legend>
            <table align="center">
                <tr>
                    <td><label for="slogan">Slogan:</label></td>                   
                    <td><%= Html.TextBox("slogan")%></td>
                </tr>
                <tr>
                    <td><label for="content">Content :</label></td>
                    <td>
                        <asp:ScriptManager ID="ScriptManager1" runat="server">
                        </asp:ScriptManager>

                        <cc1:Editor ID="content" runat="server" Height="300px"  />
                    </td>
                 </tr>
             </table>
     </fieldset>

ProductController:

     public ActionResult CreateProduct(string slogan, string content)
    {
        ProductDataContext data = new ProductDataContext();
        PRODUCT p = new PRODUCT();

        p.SLOGAN = slogan;
        p.CONTENT = content;

        data.AddProduct(p);
        data.SubmitChanges();

        return View();
    }

当我添加产品时,只添加了slogan,内容为空。

我不明白以及如何修复它。 请帮助我! 非常感谢!

I have view to use Ajax toolkit editor control.

View CreateProduct

 <fieldset>
            <legend>Product information</legend>
            <table align="center">
                <tr>
                    <td><label for="slogan">Slogan:</label></td>                   
                    <td><%= Html.TextBox("slogan")%></td>
                </tr>
                <tr>
                    <td><label for="content">Content :</label></td>
                    <td>
                        <asp:ScriptManager ID="ScriptManager1" runat="server">
                        </asp:ScriptManager>

                        <cc1:Editor ID="content" runat="server" Height="300px"  />
                    </td>
                 </tr>
             </table>
     </fieldset>

ProductController:

     public ActionResult CreateProduct(string slogan, string content)
    {
        ProductDataContext data = new ProductDataContext();
        PRODUCT p = new PRODUCT();

        p.SLOGAN = slogan;
        p.CONTENT = content;

        data.AddProduct(p);
        data.SubmitChanges();

        return View();
    }

When I added a product, just slogan was added, content was null.

I dont understand and how to repair it.
Help me, please!
Thanks so much!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北笙凉宸 2024-11-22 16:42:08

这是行不通的。您正在将 ASP.NET WebForms 与 MVC 混合在一起。 ID="content" 仅设置编辑器控件的服务器端 ID。然而,控制器参数由表单字段名称映射,在您的情况下,相应文本区域的名称是自动生成的。我不知道有什么方法可以正常更改 ASP.NET 呈现的控件的名称。不过,您可以尝试以下操作:

<script type="text/javascript">
document.getElementById('<%= content.ClientID =>').name = 'content';
</script>

将其放在视图的底部。它可能会起作用。

请记住,即使它有效,上面的内容也是一个肮脏的黑客行为。 MVC 项目中的正确方法是仅使用客户端脚本来初始化编辑器控件。这并不总是容易但可行。作为参考,请尝试查看此页面的源代码:

http:// /www.asp.net/ajax/ajaxcontroltoolkit/samples/htmleditor/OtherSamples/ClientSide.htm

It does not work this way. You are mixing ASP.NET WebForms with MVC. ID="content" only sets the server-side ID of the Editor control. Controller parameters however are mapped by form field names and in your case the name of the corresponding textarea is generated automatically. I'm not aware of any way you could normally change the name of a control rendered by ASP.NET. You can, however try the following:

<script type="text/javascript">
document.getElementById('<%= content.ClientID =>').name = 'content';
</script>

Put this at the bottom of your view. It might just work.

Keep in mind that even if it works, the above is a dirty hack. The right approach in an MVC project would be to initialize the Editor control using just client scripting. This is not always easy but doable. For reference, try looking at the source of this page:

http://www.asp.net/ajax/ajaxcontroltoolkit/samples/htmleditor/OtherSamples/ClientSide.htm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文