ASP.NET : Binding textbox maxlength to Class constant in HTML - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T00:51:50Zhttp://stackoverflow.com/feeds/question/247369http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247369/asp-net-binding-textbox-maxlength-to-class-constant-in-html1ASP.NET : Binding textbox maxlength to Class constant in HTMLAsh2008-10-29T15:57:35Z2008-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><asp:TextBox runat="server" id="txTextBox" MaxLength="<Value From Metadata here>" ... />
</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><%# Constant.Value %></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#2473900Answer by Marcus King for ASP.NET : Binding textbox maxlength to Class constant in HTMLMarcus King2008-10-29T16:03:56Z2008-10-29T16:03:56Z<p>I think you should be able to do it with something like this</p>
<pre><code><asp:TextBox runat="server" id="txTextBox" MaxLength="<%=Constants.SomeValue%>" />
</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#2475021Answer by Mark Brackett for ASP.NET : Binding textbox maxlength to Class constant in HTMLMark Brackett2008-10-29T16:36:54Z2008-10-29T16:36:54Z<p>You can use a data binding expression:</p>
<pre><code><asp:TextBox MaxLength="<%# Constant.Value %>" />
</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><asp:TextBox MaxLength="<%$ Constants:Value %>" />
</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<string, object> Values =
new Dictionary<string, object>() {
{ "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><system.web>
<compilation>
<expressionBuilders>
<add expressionPrefix="Constants" type="ConstantsExpressionBuilder" />
</expressionBuilders>
</compilation>
</system.web>
</code></pre>
<p>And call it in an ASPX page:</p>
<pre><code><asp:Textbox runat="server" MaxLength="<%$ Constants:Value1 %>" ReadOnly="<%$ Constants:Value2 %>" Text="<%$ Constants:Value3 %>" />
</code></pre>
<p>Which should produce:</p>
<pre><code><input type="text" maxlength="12" readonly="false" value="this is a test" />
</code></pre>
<p>in the HTML output.</p>