我是使用JQuery和Asp.net的新手。我在Asp.net上使用JQuery开发了一个小项目。我编写了一个小代码,其中包含当我点击它时按钮对话模式出现并包含表单数据。我想将此表单数据从JQuery对话框保存到数据库中。我需要你的帮助。
答案 0 :(得分: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>
然后只需将值从文本框传递到插入语句