客户端 ID 是在哪个页面生命周期生成的?
我以编程方式将 Webcontrol 添加到用户控件中 我还添加了一个 javascript 事件,将 controlID 作为参数传递,但 clientID 是我分配的,它不包含 asp.net 生成的那个
var txt = new TextBox();
txt.ID = "MyID"+Number;
chkBox.Attributes.Add("onClick", "EnableTxtBox('" +txt.ClientID + "');");
我可以通过添加来解决此问题父控件 ID
chkBox.Attributes.Add("onClick", "EnableTxtBox('" + this.ClientID+"_"+txt.ClientID + "');");
客户端 ID 是在哪个页面生命周期生成的?
i am programatically adding Webcontrols in to a User Control i am also adding a javascript event passing the controlID as a parameter but the clientID is the one i assigned a it does not contain the one that asp.net generates
var txt = new TextBox();
txt.ID = "MyID"+Number;
chkBox.Attributes.Add("onClick", "EnableTxtBox('" +txt.ClientID + "');");
i can workAround this by adding the parent control ID
chkBox.Attributes.Add("onClick", "EnableTxtBox('" + this.ClientID+"_"+txt.ClientID + "');");
On which Page life cycle are the Client IDs generated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够在 OnPreRender() 期间添加该属性。 INamingContainer 有时是如此痛苦......
You should be able to add the attribute during OnPreRender(). INamingContainer is so painful sometimes...
在添加属性之前,您需要将控件添加到控件层次结构中。
ControlCollection 不是普通的集合; 当添加控件时,它会通知所有者控件,并且控件可以采取适当的操作。
You need to add the control to the control hierarchy before you add the attribute.
ControlCollection is no ordinary collection; it notifies the owner control when controls are added, and the control can take appropriate actions.