ASP.NET 中的用户控件
我在网页上有一个用户控件。我想在我的网络用户控件上使用网页的值。我该怎么做
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在谈论在代码中使用页面值,即在服务器端,那么您可以通过强制转换用户控件的“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.
您可以在用户控件中创建和设置属性:
然后在 ASP.NET 页面中您可以通过以下方式访问该属性:
You can create and set property in your user control:
Then in your ASP.NET page you can access this property by: