I have a simple horizontal menu in a user control (ascx) form that I use on several aspx pages. The menu has five options (we'll call them A, B, C, D & E). Options A & B are linked to different DIVs on the same aspx page. Options C thru E target different aspx pages.
Here's my quandry: when I start the app, I'm looking at the page that contains the DIV that corresponds to menu item A. When I click on menu item B (same page, different DIV), both the user control ascx and the page it's on are treated as if it's a brand new page load. In other words, when the server-side menu click event fires, IsPostback = False for both the aspx and ascx pages! I'm not targeting a new page, so shouldn't the IsPostback property equal True?
Is there a way to force the IsPostback to equal True, or am I just missing something in regard to handling postback events using a user control?
I'll be very generous with stars for any help I can get on this.
kubu