A
AC [MVP MCMS]
I feel like I'm missing something so simple...
I have a page (start.aspx) whose code behind is
public class Start : AdminPage
{
override protected void OnInit(EventArgs e)
{
base.OnInit(e);
int x=1;
}
}
And my AdminPage class looks like this:
public class AdminPage : System.Web.UI.Page
{
override protected void OnInit(EventArgs e)
{
int x=1;
}
}
No, it's not really this simple, but I'm removing my custom stuff to keep it
simple for this question. Anyway, I build and set a breakpoint in the
AdminPage.OnInit assignment and it never stops... but it does stop on the
Start OnInit if I do the same thing... ideas? I'm flat out lost.
I have a page (start.aspx) whose code behind is
public class Start : AdminPage
{
override protected void OnInit(EventArgs e)
{
base.OnInit(e);
int x=1;
}
}
And my AdminPage class looks like this:
public class AdminPage : System.Web.UI.Page
{
override protected void OnInit(EventArgs e)
{
int x=1;
}
}
No, it's not really this simple, but I'm removing my custom stuff to keep it
simple for this question. Anyway, I build and set a breakpoint in the
AdminPage.OnInit assignment and it never stops... but it does stop on the
Start OnInit if I do the same thing... ideas? I'm flat out lost.