Javascript scope with asp.net - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T15:02:45Zhttp://stackoverflow.com/feeds/question/1073354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1073354/javascript-scope-with-asp-net1Javascript scope with asp.netTabloo Quijico2009-07-02T09:19:06Z2009-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><%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Response.Write("<script type=text/javascript>alert('Alert from response.write')" & ";</sc" & "ript>")
End Sub
Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Response.Write("<script type=text/javascript> helloWorld(); </sc" & "ript>")
End Sub
Protected Sub Button3_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Response.Write("<script type=text/javascript> helloWorld(); </sc" & "ript>")
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<script type="text/javascript">
function helloWorld()
{
alert('hello!');
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button runat=server ID="Button1" text=1 OnClick="Button1_Click" />
<asp:Button runat=server ID="Button2" text=2 OnClick="Button2_Click" />
<asp:Button runat=server ID="Button3" text=3 OnClick="Button3_Click" OnClientClick="helloWorld();" />
<asp:Button runat=server ID="Button4" text=4/>
</div>
</form>
</body>
</html>
</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#10733790Answer by kim3er for Javascript scope with asp.netkim3er2009-07-02T09:25:05Z2009-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#10733811Answer by David Dorward for Javascript scope with asp.netDavid Dorward2009-07-02T09:25:55Z2009-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><script></code> tags outside the head or body.)</p>
http://stackoverflow.com/questions/1073354/javascript-scope-with-asp-net/1073385#10733850Answer by AnthonyWJones for Javascript scope with asp.netAnthonyWJones2009-07-02T09:26:24Z2009-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>