HtmlGenericControl 和 id
有一种方法可以控制我的 HtmlGenericControl 的 ID。
我尝试创建自己的 HtmlGenericControl 并覆盖 UniqueID、ClientID、onPreRender 等...但没有任何效果
It's there a way i can control the ID of my HtmlGenericControl.
I try to create my own HtmlGenericControl and override UniqueID, ClientID, onPreRender etc ... but nothing work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
下面的文章演示了如何覆盖您自己的 ID 控件。虽然它没有显示如何为 htmlgenericcontrol 执行此操作,但从所有其他示例中应该很容易弄清楚。
如何显示具有干净 ID 值的 Asp.Net 控件
The following article demonstrates how to override controls your own ID's. Whilst it does not show how to do it for htmlgenericcontrol it should be pretty easy to figure out from all the other examples.
How to Display Asp.Net Controls with Clean ID Values
您不需要覆盖这一切,只需覆盖渲染并手动完成所有操作
You don't need to override this all, just override Render and do everything manually
可以通过添加 id 属性来手动为 HtmlGenericControl 指定客户端 Id:
给定的 Id 只能从客户端(例如 JavaScript)访问。
The HtmlGenericControl can be manually given a client Id by adding the
id
attribute:The Id given will only be accessible from the client side (e.g. JavaScript).