Hello All,

I have a web application with master page.
master page has accordian (vertical) menu with favorites section where user can drag menu items dynamically.
user has to press 'save' button to save these newly dragged items.
My problem is after pressing 'save' button, these control's do not render until I press F5.
Is there any way that I could refresh the master page content and render the new controls when 'save' button is clicked.

I have tried:

page_load(this,null)

It doesn't help.

Please help.

Thank you.

Regards
hitro

Recommended Answers

All 2 Replies

possibly set the button's autopostback = true.

try

Response.Redirect(HttpContext.Current.Request.Url.ToString(), true);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.