我使用VS 2012,在我的Azure门户中创建新的Web应用程序然后我下载发布配置文件,但在发布我的网站后,我得到与水晶报告版本相关的错误
$.ajax({
url: "https://graph.facebook.com/me?fields=name,email,birthday,location&access_token=xxxxcallback=?",
success: function(data) {
// access the properties of the response here:
console.log(data.name);
console.log(data.email);
console.log(data.location.name);
}
});
我该如何解决这个问题?
答案 0 :(得分:0)
Microsoft.ReportViewer.WebForms.dll
通常出现在您的位置计算机上的GAC中,这就是您的本地项目可能有效的原因。将项目发布到Azure App Service时,请确保 bin-deploy此DLL和任何其他从属DLL ,以便您的应用程序可以在Azure中加载它们。