S
SlimFlem
I hope this makes sense.
Here is what I am attempting. I have an inital generic aspx page that
has one custom tag:
<web:site id=webSite runat=server/>
When this control evaluates, it will return a small amount of Html with
another custom control tag inside this html. For example:
<table>
<tr>
<td><webage id=webPage runat=server/></td>
</tr>
</table>
In turn, this webage control will have multiple other custom tags
called web:content. When asp.net renders this, only the initial custom
control I have embedded in the generic aspx page actually renders. The
web:site tag renders with the webage custom control tag showing in
the rendered page source as plain text, it was never rendered.
What I need is a way to tell asp.net to render any custom control tags
I spit out inside text/html strings and have this repeat down thru a
series of controls.
How do I tell asp.net to essentially "re-render" the page. Hopefully
someone has done something similar and I am speaking clearly.
Thanks.
Here is what I am attempting. I have an inital generic aspx page that
has one custom tag:
<web:site id=webSite runat=server/>
When this control evaluates, it will return a small amount of Html with
another custom control tag inside this html. For example:
<table>
<tr>
<td><webage id=webPage runat=server/></td>
</tr>
</table>
In turn, this webage control will have multiple other custom tags
called web:content. When asp.net renders this, only the initial custom
control I have embedded in the generic aspx page actually renders. The
web:site tag renders with the webage custom control tag showing in
the rendered page source as plain text, it was never rendered.
What I need is a way to tell asp.net to render any custom control tags
I spit out inside text/html strings and have this repeat down thru a
series of controls.
How do I tell asp.net to essentially "re-render" the page. Hopefully
someone has done something similar and I am speaking clearly.
Thanks.