2011-03-26 63 views
0

當我跑我的ASP.net應用程序,我得到這個錯誤:有人知道這個錯誤是什麼嗎?

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS0234: The type or namespace name 'Exchange' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)

Source Error:

Line 06: using System.Web.UI.WebControls;

Line 07: using System.Data.OleDb;

Line 08: using Microsoft.Exchange.WebServices.Data; // error

Line 09: using System.Net;

Line 10: using System.Data.SqlClient;

回答

3

你添加了Microsoft.Exchange.WebServices.dll爲你的項目的引用?

你必須有安裝在您的框中鍵入Exchange Web服務託管API和DLL可以在C發現:\程序Files \ Microsoft \交換\ web服務\ 1.0

您也可以下載API here 。從.NET Framework 4的客戶端配置文件

+0

你是什麼意思,你需要在你的盒子上安裝EWS MAPI? – SamekaTV 2011-03-28 06:32:17

1

切換目標框架.Net框架4

+0

我在哪裏可以找到這個? – SamekaTV 2011-03-26 16:30:30

+0

它可能不適用於Web應用程序,但請查看此帖並查看它是否有幫助http://social.technet.microsoft.com/Forums/en-US/exchangesvrdevelopment/thread/26f1a426-f42d-4bab-8245-1a77c3f09251 – 2011-03-26 16:36:32

+0

我沒有安裝Framework 4,最高爲3.5 – SamekaTV 2011-03-28 06:31:06

0

錯誤本身意味着你可能會缺少程序集引用。

從Visual Studio中,單擊添加引用並添加對包含Microsoft.Exchange.WebServices.Data的程序集的引用。

+0

我已經添加了參考,我是通過您描述的步驟完成的! – SamekaTV 2011-03-26 16:31:04

相關問題