获取控件的 HtmlTextWriter

发布于 2024-09-03 20:20:52 字数 400 浏览 10 评论 0原文

是否可以获取控件的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可遇━不可求 2024-09-10 20:20:53

所以你基本上是说,当你调用它时,代码中的某个地方

writer.RenderEndTag();

没有添加 endTag,因为你认为你重写了 RenderEndTag() 方法。

请发布覆盖/虚拟方法的代码以及使用它的位置。

so you are basically saying that somewhere in your code when you call

writer.RenderEndTag();

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文