如何使用参数初始化 ASP.NET 用户控件?
例如,我有一个用户控件(ascx),里面有一个标签, 我将在我的 aspx 页面中使用用户控件。
如何将字符串值传递给ascx页面,以便它可以显示在ascx页面开头的标签中?
For example, I have a user control(ascx) with a label inside,
I will use the the user control in my aspx page.
How can I pass a string value to the ascx page so that it can be display in the label of ascx page at the beginning?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其添加
到您的 ascx 控件中。 然后,从您放入的页面中,您可以设置文本,例如...
usercontrol.Whatever = "text to display";
或者您可以使用 Whatever 作为 aspx 一侧的属性这一页。
Add this...
to your ascx control. Then from the page you are putting it in you can just set the text like...
usercontrol.Whatever = "text to display";
or you can use the Whatever as a property on the aspx side of the page.
您可以通过为用户控件创建属性来公开您想要访问的任何控件。
过去,当我有需要某些数据进行设置的用户控件时,我会创建一个初始化方法,该方法将接受并设置所需的任何内容。
You can expose whatever controls you want access to in your user control by creating property for them.
In the past when I have had user controls that required certain data for setup I would create an Initialize method which would take in and setup whatever was needed.