ASP.NET 中的用户控件

发布于 2024-10-20 18:28:17 字数 44 浏览 2 评论 0原文

我在网页上有一个用户控件。我想在我的网络用户控件上使用网页的值。我该怎么做

I have a user control on a web page . I want to use the values of the web page on my web user control.How can i do this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

绮筵 2024-10-27 18:28:17

如果您正在谈论在代码中使用页面值,即在服务器端,那么您可以通过强制转换用户控件的“this.Ownerpage”属性来访问页面属性,如果您正在客户端谈论它,则使用 Javascript/ Jquery 结合隐藏字段你可以轻松做到这一点。

If you are talking of using page values in code i-e on server side , then you can access the page properties by casting the "this.Ownerpage" property of user control , and if you are talking of it on client side , then using Javascript/Jquery in combination with hidden fields you can do it easily.

滿滿的愛 2024-10-27 18:28:17

您可以在用户控件中创建和设置属性:

private string m_name = string.Empty;
public string UserName()
{
    return TextBox.Text;
}

然后在 ASP.NET 页面中您可以通过以下方式访问该属性:

MyUserControl.UserName();

You can create and set property in your user control:

private string m_name = string.Empty;
public string UserName()
{
    return TextBox.Text;
}

Then in your ASP.NET page you can access this property by:

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