Cannot read function written in baseform
- by Nana
I have a program (aspx page) which inherits the baseform.
My baseform has a function which validates a session.
But currently, the program runs to the page and it didnt go through the baseform and read the function.
I dont know where i go wrong. no error pop out.
I build the page, still no error.
Below is the code which i call the baseform.
public partial class TAView : BaseForm
{
protected override void Page_Load(object sender, EventArgs e)
{
if (Page.IsPostBack == false)
{
base.Page_Load(sender,e);
binddropdownlists();
}
}