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(); } }