我正在嘗試創建一個網頁來創建小型播放列表。數據輸入到字段後,需要將其保存到XML文件中。目前該表格如下所示:如何獲取錶行中的所有HtmlInputText控件?
<%-- song list table --%>
<table runat="server" id="table" class="table">
<%-- info row --%>
<thead>
<tr>
<td>Song Title</td>
<td>Song Artist</td>
<td>Song Album</td>
<td><%-- column for delete button --%></td>
</tr>
</thead>
<%-- input rows --%>
<tbody>
<tr>
<td><input runat="server" placeholder="Title" type="text" /></td>
<td><input runat="server" placeholder="Artist" type="text" /></td>
<td><input runat="server" placeholder="Album" type="text" /></td>
<td>
<a href="#">
<img src="Images/Delete.png" onmouseover="this.src='Images/Delete-Hover.png'" onmouseout="this.src='Images/Delete.png'" alt="Delete" />
</a>
</td>
</tr>
</tbody>
</table>
新行將隨jQuery動態添加。當用戶單擊保存時,我需要將表數據寫入其特定的XML文件。目前我的後端代碼如下所示:
//for each row
foreach (HtmlTableRow row in table.Rows)
{
//create row info
textWriter.WriteStartElement("Row");
//for each cell
foreach (HtmlTableCell element in row.Cells)
{
//get inputs
//write current input to xml
}
//close row
textWriter.WriteEndElement();
}
我的問題是,我從那裏我的代碼才能夠得到每個輸入的值,並將其寫入XML。
我編輯了你的標題。請參閱:「[應該在其標題中包含」標籤「](http://meta.stackexchange.com/questions/19190/)」,其中的共識是「不,他們不應該」。 –
請考慮選擇以下答案之一作爲正確答案,或者提供更多詳細信息,以便我們提供進一步的幫助。 –