body runat="server" causing compilation error - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T23:45:41Z http://stackoverflow.com/feeds/question/725658 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/725658/body-runatserver-causing-compilation-error 1 body runat="server" causing compilation error Richard Ev http://stackoverflow.com/users/39709 2009-04-07T13:20:18Z 2009-04-07T13:49:09Z <p>In a Master Page I have the following markup</p> <pre><code>&lt;body id="body" runat="server"&gt; </code></pre> <p>I have set <code>runat="server"</code> because I need to be able to access the body element in code-behind.</p> <p>I would now like to add a JavaScript function call to the <code>body onload</code> event, like this:</p> <pre><code>&lt;body id="body" runat="server" onload="someJavaScriptFunction();"&gt; </code></pre> <p>However, this is giving my a compile error, with a message of "Cannot resolve symbol someJavaScriptFunction();". If I run the application I get an error telling me</p> <pre>Compiler Error Message: CS1026: ) expected</pre> <p>What is going on here? <code>onload</code> is a client-side event, so why does the ASP.NET compiler care about this?</p> http://stackoverflow.com/questions/725658/body-runatserver-causing-compilation-error/725670#725670 5 Answer by Ian Quigley for body runat="server" causing compilation error Ian Quigley http://stackoverflow.com/users/52458 2009-04-07T13:22:47Z 2009-04-07T13:32:31Z <p>You need to add this in the code behind;</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { body.Attributes.Add("onload", "someJavaScriptFunction();"); } </code></pre> <p>Adding <code>runat="server"</code> to a tag makes it a server tag, even if it isn't one of the explicitly prefixed ones (e.g. <code>&lt;asp:Panel /&gt;</code>). On server tags, any <code>onXXXX</code> event handlers handle the server-side events, not the client-side events (except for when "client" is explicitly called out, such as with OnClientClick for buttons).</p> http://stackoverflow.com/questions/725658/body-runatserver-causing-compilation-error/725674#725674 3 Answer by John Gietzen for body runat="server" causing compilation error John Gietzen http://stackoverflow.com/users/57986 2009-04-07T13:24:20Z 2009-04-07T13:49:09Z <p>It is also an option to set:</p> <pre><code>&lt;head&gt; &lt;script language="text/javascript"&gt; window.onload = function() { someJavaScriptFunction(); } &lt;/script&gt; &lt;/head&gt; </code></pre> <p>This is happening because ASP is trying to interpret the script inside the body tag as part of the code in the page. As though it were C# / VB...</p>