Как сохранить значение в базе данных динамически создаваемого текстового поля с помощью jquery с помощью ASP.NET
У меня есть две кнопки, на button1 click i m creating multiple html textbox so i need to save the values of dynamically created textbox to database by clicking on button2. поэтому я просто хочу знать, как получить доступ к динамически созданному значению текстового поля в файле aspx.cs.
Что я уже пробовал:
here i am creating dynamic textbox using jQuery - function CreateTextbox(){ var $ctrl = $('<input id="txtExtPersons1" name="txtExtPersons1" class="form-fieldContractEntry"').attr({ type: 'text', name: 'text' }); $("#holder").append($ctrl); }
here i am trying to access the value of dynamically created textbox. protected void btnSave_Click(object sender, EventArgs e) { if (!string.IsNullOrEmpty(Request.Form["txtExtPersons1"])) { string a = Request.Form["txtExtPersons1"]; } }