我在我的应用程序中使用 Jquery 添加多个文本框,然后在我想要的文件后面的代码中,我可以通过 Request.form [name] 访问这些值。我想迭代这些文本框并读取用户输入的任何文本的值,因此我可以将其存储在数据库中。知道如何将这些文本框的值保存在数据库中,我正在使用 asp.net 2.0
$(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++;
});
});