show/hide this revision's text 2 Updated for databinding sample with formatting.

Don't forget that a .aspx page is simply XML. You just escape the quotes as you normally would.

For example:

<asp:Repeater ID="repeatTheLabel" runat="server">
    <ItemTemplate>
        <asp:Label ID="Label1" Text="<%# Eval(&quot;Id&quot;, &quot;This is &quot;&quot;Quoted&quot;&quot; text&quot; item '{0}'.&quot;) %>" runat="server" />
    </ItemTemplate>
    <SeparatorTemplate>
        <br />
    </SeparatorTemplate>
</asp:Repeater>

When the above expression is databound the value between <%# and %> becomes:

Eval("Id", "This is ""Quoted"" text"item '{0}'.")

...which produces on the HTML page as output when databound with an array of objects with "Id" property values from 1 to 5:

This is "Quoted" textitem '1'.
This is item '2'.
This is item '3'.
This is item '4'.
This is item '5'.

show/hide this revision's text 1

Don't forget that a .aspx page is simply XML. You just escape the quotes as you normally would.

For example:

<asp:Label Text="<%# &quot;This is &quot;&quot;Quoted&quot;&quot; text&quot; %>" runat="server" />

When the above expression is databound the value becomes:

"This is ""Quoted"" text"

...which produces on the HTML page as output:

This is "Quoted" text