私は自分のアプリケーションで Jquery を使用して複数の TextBoxes を追加しています。その後、コード ビハインド ファイルで Request.form[name] によって値にアクセスできます。これらのテキストボックスを繰り返し、ユーザーが入力したテキストの値を読み取りたいので、データベースに保存できます。これらのテキストボックスの値をデータベースに保存して、各テキストボックスの値をコンマ(,)で分割する方法を教えてくださいこれらすべてのテキストボックスの値をループで取得してDBテーブルに保存する方法を教えてください
$(document).ready(function () {
var counter = 2;
$(\"#addButton\").click(function () {
if (counter > 10) {
alert(\"Only 10 textboxes allow\");
return false;
}
var newTextBoxDiv = $(document.createElement('div'))
.attr(\"id\", 'TextBoxDiv' + counter);
newTextBoxDiv.html('<table><tr><td><input type=\"text\" name=\"textbox' + counter +
'\" id=\"textbox' + counter + '\" value=\"\" ></td><td><input type=\"text\" name=\"textbox' + counter +
'\" id=\"textbox' + counter + '\" value=\"\" ></td><td><input type=\"text\" name=\"textbox' + counter +
'\" id=\"textbox' + counter + '\" value=\"\" ></td></tr></table>');
newTextBoxDiv.appendTo(\"#TextBoxesGroup\");
return false;
counter++;
});