Inline script does not resolve in ASP.Net custom control - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:52:44Z http://stackoverflow.com/feeds/question/225327 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/225327/inline-script-does-not-resolve-in-asp-net-custom-control 1 Inline script does not resolve in ASP.Net custom control Josh 2008-10-22T11:23:32Z 2009-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="&lt;%= RegExStrings.SomePattern %&gt;" </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 = "&lt;%= RegExStrings.SomePattern %&gt;"; </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#225343 0 Answer by WebDude for Inline script does not resolve in ASP.Net custom control WebDude 2008-10-22T11:28:06Z 2008-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#225351 0 Answer by PhilGriffin for Inline script does not resolve in ASP.Net custom control PhilGriffin 2008-10-22T11:30:29Z 2008-10-22T12:58:03Z <p>It's being taken as a literal string, try</p> <p>ValidationExpression='&lt;%= 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#225638 0 Answer by Sir Psycho for Inline script does not resolve in ASP.Net custom control Sir Psycho 2008-10-22T13:02:39Z 2008-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#487844 1 Answer by MarkD for Inline script does not resolve in ASP.Net custom control MarkD 2009-01-28T14:36:38Z 2009-01-28T14:36:38Z <p>But why is this? I can reproduce your problem using a simple aspx page as below:</p> <pre><code>&lt;%@ Page language="c#" AutoEventWireup="true" %&gt; &lt;html&gt; &lt;body &gt; &lt;form id="Form1" method="post" runat="server" action="?&lt;%=Request.QueryString%&gt;"&gt; Query String value: &lt;%=Request.QueryString %&gt; &lt;br /&gt; &lt;input type=submit /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </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#487930 0 Answer by devstuff for Inline script does not resolve in ASP.Net custom control devstuff 2009-01-28T15:03:30Z 2009-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#488018 1 Answer by MarkD for Inline script does not resolve in ASP.Net custom control MarkD 2009-01-28T15:24:54Z 2009-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#491388 1 Answer by MarkD for Inline script does not resolve in ASP.Net custom control MarkD 2009-01-29T12:23:59Z 2009-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#564601 1 Answer by MarkD for Inline script does not resolve in ASP.Net custom control MarkD 2009-02-19T10:00:37Z 2009-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: " &lt;link href="&lt;%=RootPath %> ..." However, inline code can be used for values of attributes."</p>