从 Master.cs 访问母版页中的 .Text 属性
我有一个文本框和一个按钮,我试图在母版页中为用户提供一个搜索选项。
我的按钮的 onClick 事件很好,但 textbox.Text 属性始终为空。
我在谷歌上搜索了一些关于从 ContentHolder 访问 Master 的文章,但我相信这不是我的情况......
感谢帮助:)
Pedro Dusso
I have a textbox and a button, and I trying to give the user a search option in the master page.
The onClick event of my button is fine, but the textbox.Text property is always empty.
I googled a little and fine many articles about accessing the Master from the ContentHolder, but I believe its no my case...
Help appreciated :)
Pedro Dusso
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该让它工作。
请检查 TextBox.Text 是否发生任何初始化
Page.Onload() 事件。
You should have it working.
Please check if there are any initialization of the TextBox.Text happening in
Page.Onload() event.