PageMethod Not Updating - Requires Project Rebuild to be Updated - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T08:57:09Zhttp://stackoverflow.com/feeds/question/425620http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/425620/pagemethod-not-updating-requires-project-rebuild-to-be-updated0PageMethod Not Updating - Requires Project Rebuild to be UpdatedTimLeung2009-01-08T19:50:50Z2009-01-08T23:09:03Z
<p>I am using the AJAX Toolkit:</p>
<pre><code> <ajaxToolkit:CascadingDropDown ID="CategoryDDL_C" runat="server" TargetControlID="CategoryDDL"
Category="Main" PromptText="Please select a category" LoadingText="[Loading...]"
ServiceMethod="MainDDL" />
</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#4256650Answer by alex for PageMethod Not Updating - Requires Project Rebuild to be Updatedalex2009-01-08T20:01:19Z2009-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#4264271Answer by Robert C. Barth for PageMethod Not Updating - Requires Project Rebuild to be UpdatedRobert C. Barth2009-01-08T23:09:03Z2009-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>