我想創建一個輪詢系統,詢問用戶他們想從下拉列表中添加的選項數量。asp.net動態控制值
然後,當用戶選擇一個數字,我想爲這些數字添加文本框,最後使用asp.net遍歷文本框並在數據庫中添加它們的值。
例子:
- User chooses to add 5 options.
- I use Jquery to to append 5 inputs to the form.
- User adds their values.
- I iterate through the text-boxes and execute a void based on these values.
,我能夠做的第一件3個步驟,但我停留在第4步。爲了解決這個問題,我試圖用一個循環:
foreach (TextBox tb in form1.Controls)
{
Response.Write(tb.Text);
}
而是拋出一個錯誤:
Unable to cast object of type 'System.Web.UI.LiteralControl' to type 'System.Web.UI.WebControls.TextBox'.
我如何可以遍歷扔文本框?
感謝
嗯...你只寫了4個步驟... – Blachshma
@Blachshma - 我的錯誤,問題更新。 – Wahtever
請添加您到現在爲止的代碼,並解釋您的問題到底是什麼。 – Blachshma