Inline script does not resolve in ASP.Net custom control - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T18:52:44Zhttp://stackoverflow.com/feeds/question/225327http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control1Inline script does not resolve in ASP.Net custom controlJosh2008-10-22T11:23:32Z2009-02-19T10:00:37Z
<p>Currently I am working with a <strong>custom</strong> regular expression validator <em>(unfortunately)</em>.</p>
<p>I am trying to set the Regex pattern using a server side inline script like this:</p>
<pre><code>ValidationExpression="<%= RegExStrings.SomePattern %>"
</code></pre>
<p>However, the script is not resolving to server side code. Instead it is being interpreted literally and I end up with something like this in the rendered markup:</p>
<pre><code>ctl00_DefaultContent_regexValidatorInvitation.validationexpression = "<%= RegExStrings.SomePattern %>";
</code></pre>
<p>Any clues as to why this is not resolving properly?</p>
http://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control/225343#2253430Answer by WebDude for Inline script does not resolve in ASP.Net custom controlWebDude2008-10-22T11:28:06Z2008-10-22T11:28:06Z<p>Values in a web control do not render server side code.
Rather set that from the Code Behind</p>
<pre><code>RegExValidator1.ValidationExpression = RegExStrings.SomePattern;
</code></pre>
http://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control/225351#2253510Answer by PhilGriffin for Inline script does not resolve in ASP.Net custom controlPhilGriffin2008-10-22T11:30:29Z2008-10-22T12:58:03Z<p>It's being taken as a literal string, try</p>
<p>ValidationExpression='<%= RegExStrings.SomePattern %>'</p>
<p>Edit: The above doesn't work, I've tried to see how to do this without success,I usually set properties in the code-behind and only use this syntax for databinding when I have to. I'd be interested to know if it can be done too. </p>
http://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control/225638#2256380Answer by Sir Psycho for Inline script does not resolve in ASP.Net custom controlSir Psycho2008-10-22T13:02:39Z2008-10-22T13:02:39Z<p>If your regular expression validator has the runat="server" attribute, then change it from the code behind. It would be much easier.</p>
http://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control/487844#4878441Answer by MarkD for Inline script does not resolve in ASP.Net custom controlMarkD2009-01-28T14:36:38Z2009-01-28T14:36:38Z<p>But why is this? I can reproduce your problem using a simple aspx page as below:</p>
<pre><code><%@ Page language="c#" AutoEventWireup="true" %>
<html>
<body >
<form id="Form1" method="post" runat="server" action="?<%=Request.QueryString%>">
Query String value: <%=Request.QueryString %>
<br />
<input type=submit />
</form>
</body>
</html>
</code></pre>
<p>This displays the following after submitting the form:</p>
<blockquote>
<p>Query String value:
%3c%25=Request.QueryString%25%3e</p>
</blockquote>
<p>For some reason, the inline code is not executed when the
runat="server" is present. The strange thing is I have 3 machines
that do not behave this way and one that does, so I can only assume
that this is an IIS/.NET config issue, possibly caused by a recent MS
Update. The software I have installed recently on the machine
exhibiting this behaviour is:
Visual Studio 2008
WSE 3.0
IE8 RC1</p>
<p>I wonder if any of these have caused this? </p>
http://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control/487930#4879300Answer by devstuff for Inline script does not resolve in ASP.Net custom controldevstuff2009-01-28T15:03:30Z2009-01-28T15:03:30Z<p>You're using a databinding expression on a control that is not databound. You need to call DataBind(), or use an ExpressionBuilder implementation. A simple ExpressionBuilder for binding to arbitary code can be found at <a href="http://weblogs.asp.net/infinitiesloop/archive/2006/08/09/The-CodeExpressionBuilder.aspx" rel="nofollow">http://weblogs.asp.net/infinitiesloop/archive/2006/08/09/The-CodeExpressionBuilder.aspx</a></p>
http://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control/488018#4880181Answer by MarkD for Inline script does not resolve in ASP.Net custom controlMarkD2009-01-28T15:24:54Z2009-01-28T15:24:54Z<p>devstuff, that doesn't explain why this works on 3 of my machines, but not a 4th one, does it? They are all using the same .NET Framework version and IIS settings (I believe, having checked as many as I coukd)</p>
http://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control/491388#4913881Answer by MarkD for Inline script does not resolve in ASP.Net custom controlMarkD2009-01-29T12:23:59Z2009-01-29T12:23:59Z<p>I've uninstalled the .NET framework while investigating this (3.5 then 3.0 and 2.0) - I then had no problems after
Installing each of the following:
.net framework 2.0
.net framework 2.0 SP1
.net framework 3.0
.net framework 3.0 SP1
.net framework 3.5 </p>
<p>But after I installed .net framework 3.5 SP1 the behaviour returned – I guess this is the issue. I have raised this with Microsoft and will update this thread when I get a response. </p>
http://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control/564601#5646011Answer by MarkD for Inline script does not resolve in ASP.Net custom controlMarkD2009-02-19T10:00:37Z2009-02-19T10:00:37Z<p>This has now been cleared up my MS. The issue I discovered was caused by the fact that the "action" attribute in server forms had no effect prior to .NET 2 SP2, but now can be set. Code render blocks have never worked in attribute values - this is explained towards the end of this post.</p>
<p>This was a consequence of a deliberate change in behaviour introduced in Microsoft .NET Framework 3.5 SP1. Prior to the service pack, action and method attributes on server side FORM tags could not be over-ridden. If specified they would be replaced by ASP.NET with "POST" and "page name".</p>
<p>Previously, the ASP.NET page parser did not prevent one specifying these attributes although the documentation advised against it for the action attribute:
<a href="http://msdn.microsoft.com/en-us/library/k33801s3.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/k33801s3.aspx</a></p>
<p>In particular the comment (in the context of the FORM element):</p>
<p>• "The opening tag must not contain an action attribute. ASP.NET sets these attributes dynamically when the page is processed, overriding any settings that you might make. "</p>
<p>The issue that was originally reported by Josh, where the code block was not being interpreted is not new behaviour but is a known bug - code render blocks cannot be used within server control attributes. This is reported as a "Connect" bug:
<a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=109257" rel="nofollow">http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=109257</a>
which contains the following:
" Attributes of server controls cannot take an inline expression as value. This explains the unexpected behaviour as seen with: " <link href="<%=RootPath %> ..." However, inline code can be used for values of attributes."</p>