0

我是使用 JQuery 和 Asp.net 的新手。我在一个使用带有 Asp.net 的 JQuery 的小项目上工作。我编写了小代码,其中包含当我单击一个按钮时,对话框模式出现并包含表单数据。我想将此表单数据从 JQuery 对话框保存到数据库中。拜托我需要你的帮忙。

4

1 回答 1

0

这是我在过去完成的代码。

 $('[id$=LnkAdd]').click(function () {
            $(".update").dialog({
                modal: true,
                title: "Add New Events",
                width: '400',
                open: function (type, data) {
                    $(this).parent().appendTo("form")
                }
            });

      <asp:LinkButton ID="LnkAdd" OnClientClick="return false" runat="server" Text="Add Event Type"></asp:LinkButton>
        <div class="update" style="display: none">               


       <asp:TextBox ID="txtAdd" placeholder="Add new event" runat="server"></asp:TextBox>
       <asp:Button ID="btnAdd" runat="server" Text="Add New Event" OnClick="btnAdd_Click" />         

        </div>

然后只需将文本框中的值传递给您的插入语句

于 2013-10-10T17:23:55.490 回答