body runat="server" causing compilation error - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T23:45:41Zhttp://stackoverflow.com/feeds/question/725658http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/725658/body-runatserver-causing-compilation-error1body runat="server" causing compilation errorRichard Evhttp://stackoverflow.com/users/397092009-04-07T13:20:18Z2009-04-07T13:49:09Z
<p>In a Master Page I have the following markup</p>
<pre><code><body id="body" runat="server">
</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><body id="body" runat="server" onload="someJavaScriptFunction();">
</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#7256705Answer by Ian Quigley for body runat="server" causing compilation errorIan Quigleyhttp://stackoverflow.com/users/524582009-04-07T13:22:47Z2009-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><asp:Panel /></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#7256743Answer by John Gietzen for body runat="server" causing compilation errorJohn Gietzenhttp://stackoverflow.com/users/579862009-04-07T13:24:20Z2009-04-07T13:49:09Z<p>It is also an option to set:</p>
<pre><code><head>
<script language="text/javascript">
window.onload = function() { someJavaScriptFunction(); }
</script>
</head>
</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>