Cannot read function written in baseform
Posted
by Nana
on Stack Overflow
See other posts from Stack Overflow
or by Nana
Published on 2009-09-25T02:21:27Z
Indexed on
2010/05/02
13:08 UTC
Read the original article
Hit count: 150
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();
}
}
© Stack Overflow or respective owner