Hi,
Chinoo007:In web form i am adding asp:menu to a place holder at run time but the form is post back the menu gets sift a little below in the place holder.
Did you add the menu control in the page_load event?
How about try to olace the code that load the menu in if (!IsPostBack) in the page_load event.
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
// popuMenu();
}
}
If I misunderstand you, please let me know.
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Yours sincerely,
Amanda Wang
Microsoft Online Community Support