How to use Single Quotes in Eval Format String - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T07:29:05Zhttp://stackoverflow.com/feeds/question/264414http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string2How to use Single Quotes in Eval Format StringDavid HAust2008-11-05T05:41:52Z2009-06-29T17:45:27Z
<p>I've got a Repeater and its SqlDatasource nested inside a Gridview TemplatedField.<br />
The Repeater's datasource SelectCommand is set using the FormatString of an Eval from the Gridview.<br />
The SelectCommand has a WHERE clause which is to compare a string.<br />
Because I have already used the single and double quotes, I am having trouble delimiting the string in the SQL WHERE clause.</p>
<p><strong>How do I add single quotes inside an Eval FormatString?</strong> </p>
<p>I have tried using '<a href="http://forums.asp.net/p/1116668/1732706.aspx#1732706" rel="nofollow">Replace</a>'.<br />
I have tried using '<a href="http://www.firstobject.com/dn_markspecialchar.htm" rel="nofollow">Special Characters</a>' (... WHERE StringField = '{0}' ...) </p>
<p>No luck so far. I appreciate any help you may be able to offer. </p>
<pre><code><asp:GridView ID="GridView1" runat="server" DataSourceID="DataSource1" DataKeyNames="Foo" AutoGenerateColumns="False" AllowSorting="true" >
<Columns>
<asp:BoundField DataField="Foo" HeaderText="Foo" SortExpression="Foo" />
<asp:BoundField DataField="Bar" HeaderText="Bar" SortExpression="Bar" />
<asp:TemplateField>
<ItemTemplate>
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="DataSourceNested">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("Blah") %>'></asp:Label>
</ItemTemplate>
</asp:Repeater>
<asp:SqlDataSource ID="DataSourceNested" runat="server" DataFile="~/App_Data/DatabaseName"
SelectCommand='<%# Eval("Bar", "SELECT Blah FROM TableName WHERE (StringField = {0})") %>' >
</asp:SqlDataSource>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</code></pre>
http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string/264426#2644260Answer by Ty for How to use Single Quotes in Eval Format StringTy2008-11-05T05:48:56Z2008-11-05T05:48:56Z<p>Have you tried escaping the single quote characters?</p>
<pre><code>... WHERE (StringField = \'{0}\') ...
</code></pre>
http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string/264443#2644432Answer by Keltex for How to use Single Quotes in Eval Format StringKeltex2008-11-05T06:01:43Z2008-11-05T14:16:09Z<p>Why don't you define this WHERE clause as a const in your codebehind. Define:</p>
<pre><code>protected const string SELECTCLAUSE =
"SELECT Blah FROM TableName WHERE (StringField = '{0}')";
</code></pre>
<p>Then your SelectCommand property would be:</p>
<pre><code>SelectCommand='<%# Eval("Bar", SELECTCLAUSE ) %>'
</code></pre>
http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string/264451#2644512Answer by Aydsman for How to use Single Quotes in Eval Format StringAydsman2008-11-05T06:10:49Z2008-11-05T08:07:32Z<p>Don't forget that a .aspx page is simply XML. You just escape the quotes as you normally would.</p>
<p>For example:</p>
<pre><code><asp:Repeater ID="repeatTheLabel" runat="server">
<ItemTemplate>
<asp:Label ID="Label1" Text="<%# Eval(&quot;Id&quot;, &quot;This is item '{0}'.&quot;) %>" runat="server" />
</ItemTemplate>
<SeparatorTemplate>
<br />
</SeparatorTemplate>
</asp:Repeater>
</code></pre>
<p>When the above expression is databound the value between <code><%#</code> and <code>%></code> becomes:</p>
<blockquote>
<p><code>Eval("Id", "This is item '{0}'.")</code></p>
</blockquote>
<p>...which produces on the HTML page as output when databound with an array of objects with "Id" property values from 1 to 5:</p>
<blockquote>
<p>This is item '1'.<br />
This is item '2'.<br />
This is item '3'.<br />
This is item '4'.<br />
This is item '5'.</p>
</blockquote>
http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string/264594#2645942Answer by Rune Grimstad for How to use Single Quotes in Eval Format StringRune Grimstad2008-11-05T08:17:19Z2008-11-05T08:17:19Z<p>Store your sql queries in properties in your Page class. Not only does it work :-) but it makes your code easier to read and maintain.</p>
<p>Oh, and you should use parameters in your queries instead of doing string replacements. That will solve the problem by removing the need for single quotes.</p>