从 vb.net 内容页更改母版页中的元素
我有一个名为 a1.aspx 的页面,Masterpagefile = a1_master.master。现在,母版页有自己的 div 和图像用于设计目的。我想要一种方法,当我加载 a1.aspx 时,应隐藏某些选定的和图像(visible=false)。我该怎么做? 如何从内容页面更改母版页中 div 或图像的可见性?
i have a page called a1.aspx, with the Masterpagefile = a1_master.master. Now the master page has its own divs and images for design purposes. I want a way where when i load a1.aspx, certain chosen 's and images should be hidden (visible=false). how can i do this?
how can i change the visibility of a div or an image in the master page from the content page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为您的母版页声明一个接口,例如:
&在您的母版页上实现它:
&然后在您的页面中您可以执行以下操作:
这将为您提供图像和图像的句柄。删除@Matthew 提到的一些问题...
HTH
Declare an Interface for your master page like:
& implement it on your master page:
& then in your page you could do:
this will give you the handle of the image & remove some of the problems which @Matthew mentions...
HTH
也许您想使用 FindControl 和 Master,如下所示:
检查此 MSDN 页面 了解更多信息和样品。
Probably you want to use FindControl and Master, like so:
Check this MSDN page for more information and samples.
为母版页创建属性:
在内容页中
Create a property for the master page
In your content page: