jQueryDialogWIDGETを使用してSQLServerデータベースにデータを挿入したい。jQueryウィジェットには、複数のフィールドと送信ボタンがあります。ユーザーが[送信]を押すと、レコードがデータベースに入力され、ダイアログが自動的に閉じます。Reference Linkのコードはかなり役に立ちますが、データベースに挿入したいと思います。この問題を解決してください、私はかなりの数日から本当にこれに固執しています。ここに投稿するサンプルコードすらありませんが、これまでに行ったことは次のとおりです。
function linkbtnTest(abc) {
$(abc).dialog({
modal: true,
buttons: { "OK": function () { $(this).dialog("Close") } },
open: function (type, data) { $(this).parent().appendTo("form") },
height: 600,
width: 800
});
}
<div id='<%# Eval("LCID") %>' style="display: none;">
<table>
<tr>
<td>
<asp:Label ID="lblInvoiceNumber" runat="server" Text="Invoice Number">
</asp:Label>
</td>
<td>
<asp:Label ID="lblInvoiceDate" runat="server" Text="Invoice Date">
</asp:Label>
</td>
<td>
<asp:Label ID="lblBLNumber" runat="server" Text="B/L Number">
</asp:Label>
</td>
<td>
<asp:Label ID="lblBLDate" runat="server" Text="B/L Date">
</asp:Label>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="txtInvoiceNumber" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txtInvoiceDate" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txtBLNumber" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txtBLDate" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblVesselName" runat="server" Text="Invoice Number">
</asp:Label>
</td>
<td>
<asp:Label ID="lblVoyageNumber" runat="server" Text="Invoice Date">
</asp:Label>
</td>
<td>
<asp:Label ID="lblDueDate" runat="server" Text="B/L Number">
</asp:Label>
</td>
<td>
<asp:Label ID="lblShipmntSchedule" runat="server" Text="B/L Date">
</asp:Label>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="txtVesselName" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txtVoyageNumber" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txtDueDate" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txtShipmntSchedule" runat="server"></asp:TextBox>
</td>
</tr>
</table>
</div>