我需要使用VB.Net在ASP.Net中的母版页上的文本框中的内容页面上显示列表框中的值
提前致谢。
答案 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)