PageMethod Not Updating - Requires Project Rebuild to be Updated - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T08:57:09Z http://stackoverflow.com/feeds/question/425620 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/425620/pagemethod-not-updating-requires-project-rebuild-to-be-updated 0 PageMethod Not Updating - Requires Project Rebuild to be Updated TimLeung 2009-01-08T19:50:50Z 2009-01-08T23:09:03Z <p>I am using the AJAX Toolkit:</p> <pre><code> &lt;ajaxToolkit:CascadingDropDown ID="CategoryDDL_C" runat="server" TargetControlID="CategoryDDL" Category="Main" PromptText="Please select a category" LoadingText="[Loading...]" ServiceMethod="MainDDL" /&gt; </code></pre> <p>And for the Service Method:</p> <pre><code>[WebMethod] [System.Web.Script.Services.ScriptMethod] public static CascadingDropDownNameValue[] MainDDL(string knownCategoryValues, string category) { CascadingDropDownNameValue[] CDDNV = new CascadingDropDownNameValue[1] ; CDDNV[0] = new CascadingDropDownNameValue(knownCategoryValues + "NO", "1"); return CDDNV; } </code></pre> <p>However, if I make code changes in the MainDDL method, it is not reflected on the page until I do a Website Rebuild.</p> <p>Any clues how I can update the Page Method without doing a full rebuild?</p> http://stackoverflow.com/questions/425620/pagemethod-not-updating-requires-project-rebuild-to-be-updated/425665#425665 0 Answer by alex for PageMethod Not Updating - Requires Project Rebuild to be Updated alex 2009-01-08T20:01:19Z 2009-01-08T20:01:19Z <p>Not sure if this is a bug of some sort, or some strange caching issue, but I've encountered the same thing in the past. This isn't amazingly convenient, but instead of rebuilding the site, try resaving your web.config file (you shouldn't have to actually change anything).</p> http://stackoverflow.com/questions/425620/pagemethod-not-updating-requires-project-rebuild-to-be-updated/426427#426427 1 Answer by Robert C. Barth for PageMethod Not Updating - Requires Project Rebuild to be Updated Robert C. Barth 2009-01-08T23:09:03Z 2009-01-08T23:09:03Z <p>Web <em>application</em> projects need to be recompiled when codebehind files change, web <em>site</em> projects do not. Which is yours?</p>