Javascript scope with asp.net - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:02:45Z http://stackoverflow.com/feeds/question/1073354 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1073354/javascript-scope-with-asp-net 1 Javascript scope with asp.net Tabloo Quijico 2009-07-02T09:19:06Z 2009-07-02T09:26:24Z <p>Hi there, </p> <p>I'm probably missing out on something fundamental here but it seems rather tricky and confusing to me so here goes...</p> <p>to demonstrate the issue I have the following example .aspx page</p> <pre><code>&lt;%@ Page Language="VB" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;script runat="server"&gt; Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Response.Write("&lt;script type=text/javascript&gt;alert('Alert from response.write')" &amp; ";&lt;/sc" &amp; "ript&gt;") End Sub Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Response.Write("&lt;script type=text/javascript&gt; helloWorld(); &lt;/sc" &amp; "ript&gt;") End Sub Protected Sub Button3_Click(ByVal sender As Object, ByVal e As System.EventArgs) Response.Write("&lt;script type=text/javascript&gt; helloWorld(); &lt;/sc" &amp; "ript&gt;") End Sub &lt;/script&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;title&gt;Untitled Page&lt;/title&gt; &lt;script type="text/javascript"&gt; function helloWorld() { alert('hello!'); } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;asp:Button runat=server ID="Button1" text=1 OnClick="Button1_Click" /&gt; &lt;asp:Button runat=server ID="Button2" text=2 OnClick="Button2_Click" /&gt; &lt;asp:Button runat=server ID="Button3" text=3 OnClick="Button3_Click" OnClientClick="helloWorld();" /&gt; &lt;asp:Button runat=server ID="Button4" text=4/&gt; &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>So, I have 3 buttons, the first calls response.write to perform a JS alert.. this works. The second tries to call helloWorld() that is defined in the head tag.. this does not work. The third called helloWorld() both in the response.write and also the onClientClick() - only the onClientClick works.</p> <p>Could someone explain why I can't call helloWorld() using the response.write method?</p> <p>Cheers :D</p> http://stackoverflow.com/questions/1073354/javascript-scope-with-asp-net/1073379#1073379 0 Answer by kim3er for Javascript scope with asp.net kim3er 2009-07-02T09:25:05Z 2009-07-02T09:25:05Z <p>I think Response.Write is probally wiping the the helloWorld() definition in the PostBack. Try inserting the script tags into the HTML using a PlaceHolder. Rich</p> http://stackoverflow.com/questions/1073354/javascript-scope-with-asp-net/1073381#1073381 1 Answer by David Dorward for Javascript scope with asp.net David Dorward 2009-07-02T09:25:55Z 2009-07-02T09:25:55Z <p>You are calling helloWorld before the HTML containing the function has even been downloaded.</p> <p>Define your functions before you call them.</p> <p>(And use a validator - you can't have <code>&lt;script&gt;</code> tags outside the head or body.)</p> http://stackoverflow.com/questions/1073354/javascript-scope-with-asp-net/1073385#1073385 0 Answer by AnthonyWJones for Javascript scope with asp.net AnthonyWJones 2009-07-02T09:26:24Z 2009-07-02T09:26:24Z <p>The server side click events run before any content is rendered. So the Response.Write generate the script elements before even the html element is written in the response. Use View Source in the browser to see what has been written.</p> <p>Try searching the help docs or MSDN for "ASP.NET page lifecycle" to learn what is going on here.</p>