-
I ended up going a different direction with this and decided to store all the script and css references, for both CDNs and local files, in the appsettings of the web.config and then have a single htlmhelper method to render to the page. Web.Config < appSettings > < add key = " refJSJquery...
-
Here's an update that will also pull css files hosted on a cdn. Like the jquery themes hosted by google and described here. http://the-xavi.com/articles/jquery-ui-css-themes-hosted-on-cdn#base Web.Config <appSettings> <add key="CDNJquery" value=" http://ajax.googleapis.com...
-
I use this code to disable buttons during an ajax postback by displaying a transparent .gif with a loading image. 1. The Master Page. <body> <form id="form1" runat="server"> <aspx:ScriptManager ID="ScriptManager1" runat="server" ScriptMode="release"...