我有一个旧项目,其中包含三个不同的项目。当我尝试构建项目时,我收到此错误消息:
"The type or namespace name 'Ajax' could not be found (are you missing a using
directive or an assembly reference?)"
我在网上找到了缺少项目或命名空间的解决方案,但看起来我缺少一些默认库。
代码如下所示:
//Ajax method to Check for existing file name
[Ajax.AjaxMethod()]
public DataTable CheckSearchName(string searchname){
// code goes here
}
有什么帮助吗?