ASP.NET : Binding textbox maxlength to Class constant in HTML - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T00:51:50Z http://stackoverflow.com/feeds/question/247369 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/247369/asp-net-binding-textbox-maxlength-to-class-constant-in-html 1 ASP.NET : Binding textbox maxlength to Class constant in HTML Ash 2008-10-29T15:57:35Z 2008-10-29T16:36:54Z <p>I am attempting to allow my web designers to use the metadata we have about database fields in the asp.net pages they are creating. The most obvious one is as follows:</p> <pre><code>&lt;asp:TextBox runat="server" id="txTextBox" MaxLength="&lt;Value From Metadata here&gt;" ... /&gt; </code></pre> <p>All the required metadata is stored in our class objects and is accessible due to its public static nature.</p> <p>The benefit of this would be that they can set values which</p> <p><strong>a)</strong> might change without them being aware or caring<br /> <strong>b)</strong> improve the user experience with very little coding effort</p> <p>and all without having them need worry about what the value is or where it has come from. This will primarily be used for automatically bound controls - i.e. ones which are added with little or no developer interaction. </p> <p>This question is very similar to <a href="http://stackoverflow.com/questions/232986/xaml-binding-textbox-maxlength-to-class-constant">One of my previous questions</a> which now works wonderfully (but that was in WPF / XAML ).</p> <p>The main point of this question is that I want as little developer requirement on this as possible - Ideally there would be some <code>&lt;%# Constant.Value %&gt;</code> type syntax which could be used directly within the <code>Maxlength=""</code> attribute of the asp:Textbox control meaning that no code needs to be added to a page/usercontrol at all.</p> <p>I have a feeling it isn't possible, but I would love someone to prove me wrong.</p> <p>Ta</p> http://stackoverflow.com/questions/247369/asp-net-binding-textbox-maxlength-to-class-constant-in-html/247390#247390 0 Answer by Marcus King for ASP.NET : Binding textbox maxlength to Class constant in HTML Marcus King 2008-10-29T16:03:56Z 2008-10-29T16:03:56Z <p>I think you should be able to do it with something like this</p> <pre><code>&lt;asp:TextBox runat="server" id="txTextBox" MaxLength="&lt;%=Constants.SomeValue%&gt;" /&gt; </code></pre> <p>But my only concern is that this doesn't really make much sense. If the constant is stored in a .cs file in order to make a change that would cause the new constant value to be reflected in the UI you would have to recompile the site. I think it may be easier just to have a hard coded value in the .aspx page that can be changed easily without the need to recompile the entire codebase. Maybe I'm not understanding the problem though.</p> http://stackoverflow.com/questions/247369/asp-net-binding-textbox-maxlength-to-class-constant-in-html/247502#247502 1 Answer by Mark Brackett for ASP.NET : Binding textbox maxlength to Class constant in HTML Mark Brackett 2008-10-29T16:36:54Z 2008-10-29T16:36:54Z <p>You can use a data binding expression:</p> <pre><code>&lt;asp:TextBox MaxLength="&lt;%# Constant.Value %&gt;" /&gt; </code></pre> <p><em>but</em>, that requires it to be in a databound control. If it's not in a repeater or somesuch, you'll need to call Container.DataBind() at some point in the page lifecycle.</p> <p>Alternatively, you could create an <a href="http://msdn.microsoft.com/en-us/library/system.web.compilation.expressionbuilder.aspx" rel="nofollow">ExpressionBuilder</a> which would allow syntax such as:</p> <pre><code>&lt;asp:TextBox MaxLength="&lt;%$ Constants:Value %&gt;" /&gt; </code></pre> <p>Here's a sample that'll pull from a single static dictionary:</p> <pre><code>using System; using System.Web.UI; using System.Web.Compilation; using System.CodeDom; using System.Collections.Generic; class ConstantsExpressionBuilder : ExpressionBuilder { private static readonly Dictionary&lt;string, object&gt; Values = new Dictionary&lt;string, object&gt;() { { "Value1", 12 }, { "Value2", false }, { "Value3", "this is a test" } }; public override bool SupportsEvaluate { get { return true; } } public override object EvaluateExpression(object target, BoundPropertyEntry entry, object parsedData, ExpressionBuilderContext context) { string key = entry.Expression.Trim(); return GetValue(key); } public override CodeExpression GetCodeExpression(BoundPropertyEntry entry, object parsedData, ExpressionBuilderContext context) { CodePrimitiveExpression keyExpression = new CodePrimitiveExpression(entry.Expression.Trim()); return new CodeMethodInvokeExpression(this.GetType(), "GetValue", new CodeExpression[] { keyExpression }); } public static object GetValue(string key) { return Values[key]; } } </code></pre> <p>You'd register this in web.config:</p> <pre><code>&lt;system.web&gt; &lt;compilation&gt; &lt;expressionBuilders&gt; &lt;add expressionPrefix="Constants" type="ConstantsExpressionBuilder" /&gt; &lt;/expressionBuilders&gt; &lt;/compilation&gt; &lt;/system.web&gt; </code></pre> <p>And call it in an ASPX page:</p> <pre><code>&lt;asp:Textbox runat="server" MaxLength="&lt;%$ Constants:Value1 %&gt;" ReadOnly="&lt;%$ Constants:Value2 %&gt;" Text="&lt;%$ Constants:Value3 %&gt;" /&gt; </code></pre> <p>Which should produce:</p> <pre><code>&lt;input type="text" maxlength="12" readonly="false" value="this is a test" /&gt; </code></pre> <p>in the HTML output.</p>