PageMethod 未更新 - 需要更新项目重建
我正在使用 AJAX 工具包:
<ajaxToolkit:CascadingDropDown ID="CategoryDDL_C" runat="server" TargetControlID="CategoryDDL"
Category="Main" PromptText="Please select a category" LoadingText="[Loading...]"
ServiceMethod="MainDDL" />
对于服务方法:
[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;
}
但是,如果我在 MainDDL 方法中进行代码更改,则在我进行网站重建之前,它不会反映在页面上。
有什么线索可以让我在不进行完全重建的情况下更新页面方法吗?
I am using the AJAX Toolkit:
<ajaxToolkit:CascadingDropDown ID="CategoryDDL_C" runat="server" TargetControlID="CategoryDDL"
Category="Main" PromptText="Please select a category" LoadingText="[Loading...]"
ServiceMethod="MainDDL" />
And for the Service Method:
[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;
}
However, if I make code changes in the MainDDL method, it is not reflected on the page until I do a Website Rebuild.
Any clues how I can update the Page Method without doing a full rebuild?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当代码隐藏文件更改时,Web应用程序项目需要重新编译,而Web站点项目则不需要。 哪一个是你的?
Web application projects need to be recompiled when codebehind files change, web site projects do not. Which is yours?
不确定这是否是某种错误,或者是一些奇怪的缓存问题,但我过去也遇到过同样的事情。 这并不是非常方便,但不要重建站点,而是尝试重新保存 web.config 文件(您不必实际更改任何内容)。
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).