0
A
回答
0
你可以這樣做客戶端,您使用jQuery像假設:
<span name="display" id="display"></span>
<input name="text1" id="text1" />
<input name="text2" id="text2" />
<input name="text3" id="text3" />
<input type="button" id="button1" />
<script>
$("#button1").click(function() {
$("#display").html($("#text1").val() + $("#text2").val() + $("#text3").val());
});
</script>
1
使用Page.FindControl來訪問動態創建的控件
0
嘗試此代碼在asp.net中
.CS文件
protected override void OnPreInit(EventArgs e)
{
Label lbl = new Label();
lbl.ID = "mylbl";
lbl.ClientIDMode = System.Web.UI.ClientIDMode.Static;
form1.Controls.Add(lbl);
for (int i = 0; i < 3; i++)
{
TextBox txt = new TextBox();
txt.ID = "txt" + i;
form1.Controls.Add(txt);
}
}
protected void Button1_Click(object sender, EventArgs e)
{
Label lbl = form1.FindControl("mylbl") as Label;
lbl.Text = "";
for (int i = 0; i < 3; i++)
{
TextBox txt = form1.FindControl("txt" + i) as TextBox;
lbl.Text += txt.Text;
}
}
.aspx文件
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
</div>
</form>
相關問題
- 1. 生成動態文本框和標籤
- 2. 鏈接動態創建的文本框和標籤
- 3. 動態創建數組文本框和標籤winforms
- 4. 從checkedListBox添加動態標籤和文本框
- 5. 在動態div標籤內動態追加腳本標籤
- 6. JQuery選擇框和動態標籤
- 7. 動態創建複選框和標籤
- 8. 動態更新文本框上的標籤文本更改?
- 9. 動態文本框
- 10. 動態編輯文本和文本框
- 11. 動態分配文本到標籤
- 12. 如何更改標籤文本動態
- 13. 動態更改標籤文本QML
- 14. Kivy更新動態標籤文本
- 15. MVP和動態標籤
- 16. PyQt和動態標籤
- 17. 動態標籤和按鈕
- 18. 動態設置文本框和標籤在GridView中的文本屬性
- 19. WinForms動態標籤
- 20. Fields_for動態標籤
- 21. Java動態標籤
- 22. 動態添加具有特定文本和座標的標籤
- 23. 動態文本框在C標籤附近#
- 24. 將標籤動態更改爲文本框的最佳實踐
- 25. 動態文本框生成
- 26. html5 canvas動態文本框
- 27. 動態創建文本框
- 28. 動態創建文本框
- 29. 創建動態文本框
- 30. ssrs footer動態文本框
到底是什麼,你所面臨的問題? – Ankit