T
tshad
I am running a program I got off the net and found the author was doing an
"autopostback=true" on his textbox.
I am not sure why he was doing this as it doesn't seem to be doing anything,
but when I put trace on, I can see the page being posted, but I have the
following:
*************************************************************
private void Page_Load(object sender, System.EventArgs e)
{
Trace.Warn("inside Page_Load");
if(!IsPostBack)
***************************************************************
The Trace.Warn displays on all of the other Postbacks, but doesn't seem to
on the AutoPostBack.
Is it foregoing the Page_Load for some reason?
I was going to take it out as it doesn't seem to be doing anything, but I am
curious as to what it is doing.
Thanks,
Tom.
"autopostback=true" on his textbox.
I am not sure why he was doing this as it doesn't seem to be doing anything,
but when I put trace on, I can see the page being posted, but I have the
following:
*************************************************************
private void Page_Load(object sender, System.EventArgs e)
{
Trace.Warn("inside Page_Load");
if(!IsPostBack)
***************************************************************
The Trace.Warn displays on all of the other Postbacks, but doesn't seem to
on the AutoPostBack.
Is it foregoing the Page_Load for some reason?
I was going to take it out as it doesn't seem to be doing anything, but I am
curious as to what it is doing.
Thanks,
Tom.