How to Execute Page_Load() in Page's Base Class?

后端 未结 6 850
不知归路
不知归路 2020-12-24 05:56

I have the following PerformanceFactsheet.aspx.cs page class

public partial class PerformanceFactsheet : FactsheetBase
{
    protected void Page_Load(object         


        
6条回答
  •  执念已碎
    2020-12-24 06:46

    Instead of a Page_Load() method, override OnLoad() and call base.OnLoad() in PerformanceFactsheet

提交回复
热议问题