Hello Mats,
As for the control/element rendering code, where did you call them? Are you
using these code to output some child html element in your custom webserver
control?
As for the XHTML content producing, ASP.NET 2.0 provide three Conformance
mode
**Legacy (which is similar to how markup was rendered in previous versions
of ASP.NET)
**Transitional (XHTML 1.0 Transitional)
**Strict (XHTML 1.0 Strict)
And the default one "Transitional" will help render most controls as XHTML
conformed output though it still includes a few exceptions. And if you set
the conformance mode to "Strict", it will force to page to output xhtml
content that conform to XHTML 1.0 Strict standard. You can get more
information about the ASP.NET 2.0 xhtml confromance setting in the
following MSDN reference:
#ASP.NET and XHTML
http://msdn2.microsoft.com/en-us/library/exc57y7e.aspx
for your problem here, I've just performed some test on my local side
through a custom webserver control, it seems that the output is correctly
XHTML conformed (set ASP.NET xhtml conformance as "Transitional" and use
IE6 to visit the page). Here is my test code:
==========================
protected override void RenderContents(HtmlTextWriter output)
{
output.AddAttribute("id", "divxhtml");
output.RenderBeginTag(HtmlTextWriterTag.Div);
output.WriteLine("<img
src=\"
http://www.asp.net/i/www_asp_net_logo.gif\" />");
output.Write(Text );
output.AddAttribute(HtmlTextWriterAttribute.Src,
"
http://www.asp.net/i/www_asp_net_logo.gif");
output.RenderBeginTag(HtmlTextWriterTag.Img);
output.RenderEndTag();
output.RenderEndTag();
}
==========================
and the web.config file just contains the following XHTML conformance
setting(the default value):
<xhtmlConformance mode="Transitional"/>
Please feel free to let me know if there is anything I missed or if you
have any other particular settings in your application.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.