Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > RenderBeginTag() output not XHMTL compliant

Reply
Thread Tools

RenderBeginTag() output not XHMTL compliant

 
 
MatsL@newsgroups.nospam
Guest
Posts: n/a
 
      10-06-2006
Hi,
This is seriously driving me crazy, could anyone explain to me why
neither of these doesn't produce XHTML compliant output (it is being
called in Render() btw):

output.WriteLine("<img src=\"" + vars["{$baseUrl}"] + " />");

output.AddAttribute(HtmlTextWriterAttribute.Src,
(string)vars["{$baseUrl}"]);
output.RenderBeginTag(HtmlTextWriterTag.Img);
output.RenderEndTag();

They both produce the same output:
<img src="/ChartImages/AllChart_68.jpg?KxRx=0x0974">

What I want is this:
<img src="/ChartImages/AllChart_68.jpg?KxRx=0x0974" />

Is there some setting that needs to be set or anything like that?


Thanks in advance!

Best regards,
Mats Lycken
 
Reply With Quote
 
 
 
 
bruce barker \(sqlwork.com\)
Guest
Posts: n/a
 
      10-06-2006
the fragment is valid, but what is the parent element?

-- bruce (sqlwork.com)

<> wrote in message
news:%...
> Hi,
> This is seriously driving me crazy, could anyone explain to me why neither
> of these doesn't produce XHTML compliant output (it is being called in
> Render() btw):
>
> output.WriteLine("<img src=\"" + vars["{$baseUrl}"] + " />");
>
> output.AddAttribute(HtmlTextWriterAttribute.Src,
> (string)vars["{$baseUrl}"]);
> output.RenderBeginTag(HtmlTextWriterTag.Img);
> output.RenderEndTag();
>
> They both produce the same output:
> <img src="/ChartImages/AllChart_68.jpg?KxRx=0x0974">
>
> What I want is this:
> <img src="/ChartImages/AllChart_68.jpg?KxRx=0x0974" />
>
> Is there some setting that needs to be set or anything like that?
>
>
> Thanks in advance!
>
> Best regards,
> Mats Lycken



 
Reply With Quote
 
 
 
 
Keith Patrick
Guest
Posts: n/a
 
      10-06-2006
Is "output" an HtmlTextWriter or an XhtmlTextWriter? (what it is rendering
is proper HTML but not XHTML, similar to how <input> works)


 
Reply With Quote
 
Steven Cheng[MSFT]
Guest
Posts: n/a
 
      10-09-2006
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/subscripti...ult.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/subscripti...t/default.aspx.

==================================================



This posting is provided "AS IS" with no warranties, and confers no rights.


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Tunneling own XML content in XHMTL etc. Florian Weimer XML 6 02-05-2011 09:52 PM
XHMTL and CSS Problem Matthias Braun HTML 14 02-01-2010 06:57 PM
nowrap not XHTML 1.0 compliant Kevin Lawrence ASP .Net 3 01-24-2006 03:38 PM
project not compliant with ASP.NET 1.1 John Grandy ASP .Net 0 09-12-2005 05:03 PM
Question about using <br /> with 'strict' xhmtl BT HTML 4 02-14-2005 05:37 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57