User Jeff - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T11:52:56Z http://stackoverflow.com/feeds/user/116869 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages/956370#956370 1 Answer by Jeff for jQuery calls in external js file with MasterPages Jeff 2009-06-05T15:07:44Z 2009-06-05T15:07:44Z <p>I want to thank everyone for their suggestions but I made a "bone-headed" mistake. The tags were mistakenly still in the external js file. Once removed, everything works as expected. I apologize for taking up everyone's time (and somewhat embarrassed).</p> <p>Thanks.</p> http://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages 0 jQuery calls in external js file with MasterPages Jeff 2009-06-04T19:08:38Z 2009-06-05T15:07:44Z <p>I am using ASP.NET 3.5 with MasterPages. My master page has the script references to jquery and jquery UI. My web page that uses the master page has a script reference for a custom javascript file for that page. This javascript file has jquery calls in it (i.e. document.ready --> set up input boxes as calendars).</p> <p>When I run the website in debug from Visual Studio, the input boxes are not set as calendars. However, if I copy the script from the external file and include it in a script block in the web page, the input box becomes a calendar.</p> <p>I also have an element in the child page (not sure if that makes a difference). I have referenced the external javascript file in the ScriptManager and outside of the ScriptManager and neither work.</p> <p>Why does jQuery not work in an external javascript file when the jQuery script reference resides in the master page?</p> <p>Any help would be appreciated.</p> <p>Thanks</p> <p>MASTER PAGE CODE</p> <pre><code>&lt;head id="Head1" runat="server"&gt; &lt;title&gt;Customer Agreement Lifecycle Management System &lt;/title&gt; &lt;link rel="stylesheet" type="text/css" href="~/calms.css" /&gt; &lt;link href="css/ui-lightness/jquery-ui-1.7.1.custom.css" rel="stylesheet" type="text/css" /&gt; &lt;script type="text/javascript" src="&lt;%=ResolveUrl("~/js/jquery-1.3.2.min.js") %&gt;"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="&lt;%=ResolveUrl("~/js/jquery-ui-1.7.1.custom.min.js") %&gt;"&gt;&lt;/script&gt; &lt;/head&gt; </code></pre> <p>CHILD PAGE CODE</p> <pre><code>&lt;asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"&gt; &lt;script src="&lt;%=ResolveUrl("~/js/rule.js") %&gt;" type="text/javascript"&gt;&lt;/script&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server"&gt; &lt;/asp:ScriptManager&gt; </code></pre> http://stackoverflow.com/questions/946908/asp-net-stream-content-from-memory-and-not-from-file/952543#952543 0 Answer by Jeff for ASP.NET stream content from memory and not from file Jeff 2009-06-04T19:15:13Z 2009-06-04T19:15:13Z <p>I created a StringBuilder and dump the contents to the Response object using the following code ("csv" is the StringBuilder variable).</p> <pre><code> Response.ContentType = @"application/x-msdownload"; Response.AppendHeader("content-disposition", "attachment; filename=" + FILE_NAME); Response.Write(csv.ToString()); Response.Flush(); Response.End(); </code></pre> http://stackoverflow.com/questions/946908/asp-net-stream-content-from-memory-and-not-from-file 0 ASP.NET stream content from memory and not from file Jeff 2009-06-03T20:07:41Z 2009-06-04T19:15:13Z <p>The users have requested the option to "download" a csv file representation of GridView contents. Does anyone know how to do this without saving the file to the server but rather just streaming it to the user from memory?</p> <p>Thanks</p> http://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages/952514#952514 Comment by Jeff on jQuery calls in external js file with MasterPages Jeff 2009-06-05T15:00:43Z 2009-06-05T15:00:43Z I tried your suggestion and get the same result http://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages Comment by Jeff on jQuery calls in external js file with MasterPages Jeff 2009-06-05T13:22:09Z 2009-06-05T13:22:09Z When I look at the page source, everything is correct http://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages/953018#953018 Comment by Jeff on jQuery calls in external js file with MasterPages Jeff 2009-06-05T12:52:46Z 2009-06-05T12:52:46Z I am not sure of what you mean by &quot;put a ContentPlaceHolder in the tag&quot;. Would you mind elaborating? http://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages/952514#952514 Comment by Jeff on jQuery calls in external js file with MasterPages Jeff 2009-06-04T20:01:03Z 2009-06-04T20:01:03Z Yes, the external script appears after the jquery reference http://stackoverflow.com/questions/952495/jquery-calls-in-external-js-file-with-masterpages/952514#952514 Comment by Jeff on jQuery calls in external js file with MasterPages Jeff 2009-06-04T19:16:52Z 2009-06-04T19:16:52Z The jQuery script reference is in the Master Page and the external script reference is in the web page that inherits the master page.