从另一个页面ASP.Net VB.Net显示列表框控件

时间:2012-12-12 13:31:34

标签: asp.net vb.net listbox master-pages

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

提前致谢。

2 个答案:

答案 0 :(得分:0)

你可以试试这个

Dim txt As Textbox = DirectCast(Master.FindControl("yourTextbox"), Textbox)
txt.text = "your Value here"

答案 1 :(得分: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)