如何使用参数初始化 ASP.NET 用户控件?

发布于 2024-07-29 01:54:46 字数 107 浏览 5 评论 0原文

例如,我有一个用户控件(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏天碎花小短裙 2024-08-05 01:54:46

将其添加

public string Whatever
{
get { return label.Text; }
set { label.Text = value; }
}

到您的 ascx 控件中。 然后,从您放入的页面中,您可以设置文本,例如... usercontrol.Whatever = "text to display";

或者您可以使用 Whatever 作为 aspx 一侧的属性这一页。

Add this...

public string Whatever
{
get { return label.Text; }
set { label.Text = value; }
}

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.

陌伤ぢ 2024-08-05 01:54:46

您可以通过为用户控件创建属性来公开您想要访问的任何控件。

过去,当我有需要某些数据进行设置的用户控件时,我会创建一个初始化方法,该方法将接受并设置所需的任何内容。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文