unexplained postback in content page

B

BillE

I am using master/content pages, with a treeview in my master page.

When the selected node changed event fires in the treeview, I redirect to
the requested content page associated with the selected node in the
treeview.

When this treeview event occurs in the master page, I noticed that the
current content page posts back (IsPostback is true), prior to the requested
postback page loading.

This isn't really causing any problem, but its a mystery to me.

What is causing the postback of the current page before the treeview
redirects to the requested page?

Thanks
Bill
 
B

bruce barker \(sqlwork.com\)

all postback events fire after the page load event.

-- bruce (sqlwork.com)
 
T

tundra999

Perhaps the autopostback property is set where it shouldn't be. I have
found the opposite to be true, where if I don't set the autopostback to
be true for a particular control, the event related method will fire
and then the page does a postback as if the control were never clicked.
This may not be exactly what you're having trouble with but might give
you some idea as to where to look to resolve it.

Tundra
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top