How to use Single Quotes in Eval Format String - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T07:29:05Z http://stackoverflow.com/feeds/question/264414 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string 2 How to use Single Quotes in Eval Format String David HAust 2008-11-05T05:41:52Z 2009-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 = &apos;{0}&apos; ...) </p> <p>No luck so far. I appreciate any help you may be able to offer. </p> <pre><code>&lt;asp:GridView ID="GridView1" runat="server" DataSourceID="DataSource1" DataKeyNames="Foo" AutoGenerateColumns="False" AllowSorting="true" &gt; &lt;Columns&gt; &lt;asp:BoundField DataField="Foo" HeaderText="Foo" SortExpression="Foo" /&gt; &lt;asp:BoundField DataField="Bar" HeaderText="Bar" SortExpression="Bar" /&gt; &lt;asp:TemplateField&gt; &lt;ItemTemplate&gt; &lt;asp:Repeater ID="Repeater1" runat="server" DataSourceID="DataSourceNested"&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="Label1" runat="server" Text='&lt;%# Eval("Blah") %&gt;'&gt;&lt;/asp:Label&gt; &lt;/ItemTemplate&gt; &lt;/asp:Repeater&gt; &lt;asp:SqlDataSource ID="DataSourceNested" runat="server" DataFile="~/App_Data/DatabaseName" SelectCommand='&lt;%# Eval("Bar", "SELECT Blah FROM TableName WHERE (StringField = {0})") %&gt;' &gt; &lt;/asp:SqlDataSource&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; </code></pre> http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string/264426#264426 0 Answer by Ty for How to use Single Quotes in Eval Format String Ty 2008-11-05T05:48:56Z 2008-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#264443 2 Answer by Keltex for How to use Single Quotes in Eval Format String Keltex 2008-11-05T06:01:43Z 2008-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='&lt;%# Eval("Bar", SELECTCLAUSE ) %&gt;' </code></pre> http://stackoverflow.com/questions/264414/how-to-use-single-quotes-in-eval-format-string/264451#264451 2 Answer by Aydsman for How to use Single Quotes in Eval Format String Aydsman 2008-11-05T06:10:49Z 2008-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>&lt;asp:Repeater ID="repeatTheLabel" runat="server"&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="Label1" Text="&lt;%# Eval(&amp;quot;Id&amp;quot;, &amp;quot;This is item '{0}'.&amp;quot;) %&gt;" runat="server" /&gt; &lt;/ItemTemplate&gt; &lt;SeparatorTemplate&gt; &lt;br /&gt; &lt;/SeparatorTemplate&gt; &lt;/asp:Repeater&gt; </code></pre> <p>When the above expression is databound the value between <code>&lt;%#</code> and <code>%&gt;</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#264594 2 Answer by Rune Grimstad for How to use Single Quotes in Eval Format String Rune Grimstad 2008-11-05T08:17:19Z 2008-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>