Q
quoclinh
I have an aspx page with code behind that has the initial page load
code happens many times as user perform different action on the page,
such as select a drop down list. To be more clear, consider the
following code:
protected override void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//Code in here gets trigger 3 times every time the user perform
action on asp.net control
// that would triggers post back
}
}
The aspx page code is too complicated to post here. I am curious if
anyone has any possible explanations for different scenario that this
could happens? Thanks for your input.
Quoc Linh
code happens many times as user perform different action on the page,
such as select a drop down list. To be more clear, consider the
following code:
protected override void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//Code in here gets trigger 3 times every time the user perform
action on asp.net control
// that would triggers post back
}
}
The aspx page code is too complicated to post here. I am curious if
anyone has any possible explanations for different scenario that this
could happens? Thanks for your input.
Quoc Linh