Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含这样的静态方法的页面:
public partial class _Default : System.Web.UI.Page { [WebMethod(EnableSession = true)] public static string Aware() { return DateTime.Now.ToString(); } }
如何从母版页调用此方法?
_Default.Aware()至于任何其他静态方法
_Default.Aware()
前任:
public partial class About : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { _Default.Aware(); } }