1

所以我有两个功能,我遇到了一个有趣的问题。本质上,我的目标是让我的代码在一个易于包含的 cs 文件中更具可移植性。

这是说cs文件:

namespace basicFunctions {
public partial class phpPort : System.Web.UI.Page {
    public string includer(string filename) {
        string path = Server.MapPath("./" + filename);
        string content = System.IO.File.ReadAllText(path);
        return content;
    }
    public void returnError() {
        Response.Write("<h2>An error has occurred!</h2>");
        Response.Write("<p>You have followed an incorrect link. Please double check and try again.</p>");
        Response.Write(includer("footer.html"));
        Response.End();
    }
}
}

这是引用它的页面:

<% @Page Language="C#" Debug="true" Inherits="basicFunctions.phpPort" CodeFile="basicfunctions.cs" %>
<% @Import Namespace="System.Web.Configuration" %>

<script language="C#" runat="server">
void Page_Load(object sender,EventArgs e) {
    Response.Write(basicFunctions.phpPort.includer("header.html"));
    //irrelevant code
    if ('stuff happens') {
        basicFunctions.phpPort.returnError();
    }
    Response.Write(basicFunctions.phpPort.includer("footer.html"));
}
</script>

我得到的错误是上面列出的错误,即:

Compiler Error Message: CS0120: An object reference is required for the non-static field, method, or property 'basicFunctions.phpPort.includer(string)'
4

2 回答 2

2

您需要一个phpPort类的实例,因为它和您在其上定义的所有方法都不是静态的。

由于您位于从此类继承aspx的页面上,因此在加载时它已经该类的实例,您可以直接调用其上的方法。

您需要修改代码以直接使用这些功能:

void Page_Load(object sender,EventArgs e) {
    Response.Write(includer("header.html"));
    //irrelevant code
    if ('stuff happens') {
        returnError();
    }
    Response.Write(includer("footer.html"));
}
于 2012-05-08T19:11:58.893 回答
0

如果要将 basicFunctions.phpPort.includer 作为静态方法调用,则需要在其上加上 static 关键字,如下所示:

public static void returnError
public static string includer

如果您不进行静态调用,则您的基本页面需要从“this”调用

if ('stuff happens') {
    this.returnError();
}
于 2012-05-08T19:12:40.253 回答