我有代碼正常的網頁表單的背後,在這後面的代碼可以實例化幾個類我在根文件夾,如:必須聲明一個身體,因爲它沒有標記爲抽象或外部? C#/ ASP.NET
public partial class _Default : System.Web.UI.Page
{
Helper helper = new Helper();
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
Initialise();
}
}
而在輔助類:
public class Helper
{
它工作正常,但現在我想將我的類文件(Helper.cs爲例)App_Code文件夾,但是當我運行該應用程序我得到的錯誤
SharePoint sharePoint = new SharePoint();
public string id { get; set; }
must declare a body because it is not marked abstract or extern
是什麼導致這個問題,我該如何解決它?
在此先感謝