占位符函数
我在占位符内有一张桌子。当我点击go
按钮时,表格变得可见。但是,当我单击 autopostback 属性设置为 true 的单选按钮列表时,该占位符中的表格就会消失。一旦我通过 go
按钮使其可见,有什么方法可以使该占位符中的表格永久存在吗?
如何使占位符内的表格可见? 我正在使用
placeholder1.visible = true;
table1.visible = true;
,但它仍然没有显示..我需要使用任何其他属性吗?请帮忙..
I have a table inside a placeholder. when i click a go
button the table becomes visible. However when i click on a radiobutton list with autopostback property set to true, the table within that placeholder dissapears. Is there any way to make the table within that placeholder permanent once i have made it visible thru the go
button?
how to make a table within a placeholder visible??
I am using
placeholder1.visible = true;
table1.visible = true;
but still its not showing up.. do i need to use any other property.? please help..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要确保表的可见状态通过回发得以持久,并在页面再次呈现时恢复。
You need to ensure the visible state of the table is persisted through post back and restored when the page renders again.