获取控件的 HtmlTextWriter
是否可以获取控件的HtmlTextWriter
?
如果不是,那么我如何在代码隐藏中调用控件的RenderEndTag
?
我的应用程序遇到问题。我扩展了列表框用户控件并覆盖其 RenderEndTag 事件。
如果我通常在网页中使用新的列表框(Mylistbox),则一切正常。但是当我将 Mylistbox 放入 Webusercontrol
中并将该 Webusercontrol
包含在网页中时,由于某种原因不会调用该控件的 RenderEndTag
。
所以我猜我应该显式调用控件的“RenderEndTag”。为此,我需要传递一个 HtmlTextWriter
...
is it possible to get HtmlTextWriter
of a control?
if no, then how can i call the RenderEndTag
of a control in code behind?
i am facing a problem in my application. i extended the listbox user control and override its RenderEndTag
event.
if i used the new listbox (Mylistbox) normally inside a WebPage, everything works fine. but when i put Mylistbox in a Webusercontrol
and include the Webusercontrol
in a WebPage, the RenderEndTag
of the control is not called for some reason.
so i guessed that i should explicitly call 'RenderEndTag' of the control. to do so i need to pass an HtmlTextWriter
...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以你基本上是说,当你调用它时,代码中的某个地方
没有添加 endTag,因为你认为你重写了 RenderEndTag() 方法。
请发布覆盖/虚拟方法的代码以及使用它的位置。
so you are basically saying that somewhere in your code when you call
it is not adding the endTag because you think you override the RenderEndTag() method.
Please post code of the override / virtual method as well as where you use it.