1
爲什麼我不能使用下列公共類:不能在我的web服務使用公共類
namespace OrganizerUI.App_code
{
public class Employee
{
private string text;
public string Text
{
get { return text; }
set { text = value; }
}
}
}
在我web service
:
你是否在webservice中使用OrganizerUI.App_code? – 2013-03-05 14:15:01
是的,我確實..... – 2013-03-05 14:16:24
您的Web服務代碼文件是否設置爲編譯?默認情況下,添加到App_Code文件夾的代碼被設置爲「content」而不是「compile」。右鍵單擊文件,獲取屬性並檢查。 – Lukos 2013-03-05 14:17:35