-1

我需要使用 VB.Net 在 ASP.Net 母版页上的文本框中显示内容页上的列表框的值

提前致谢。

4

2 回答 2

0

你可以试试这个

Dim txt As Textbox = DirectCast(Master.FindControl("yourTextbox"), Textbox)
txt.text = "your Value here"
于 2012-12-12T13:35:47.167 回答
0

因此,您应该在内容页面上运行此代码。

我假设您在母版页上的文本框不在更新面板或面板等中,那么您需要先参考它。但如果没有,这应该工作....

Dim tb As Textbox = DirectCast(Master.FindControl("theNameofYourTextBox"), Textbox)
tb.Text = ListBox.Item.Value (or the equivalent for getting the text value in the listbox)
于 2012-12-12T13:49:46.073 回答