我需要使用 VB.Net 在 ASP.Net 母版页上的文本框中显示内容页上的列表框的值
提前致谢。
你可以试试这个
Dim txt As Textbox = DirectCast(Master.FindControl("yourTextbox"), Textbox)
txt.text = "your Value here"
因此,您应该在内容页面上运行此代码。
我假设您在母版页上的文本框不在更新面板或面板等中,那么您需要先参考它。但如果没有,这应该工作....
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)