public partial class _Default : System.Web.UI.Page { static int sVar = 1; int abc = 3; int result; [WebMethod] public static string AjaxGetMethod() { sVar = 2; //靜態(tài)變量可以直接調(diào)用 _Default d = new _Default(); //如果不實例化 就不能使用result,abc NoStaticFun nsf = new NoStaticFun(); //如果不實例化 就不能使用test d.result = nsf.test(); d.result = d.abc; return d.result; } } public class NoStaticFun { public int test() { return 2; } }