how can i use menu control like:
when i click on edit the defualt3.aspx page be shown
thank u
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Prabhu RajaPosted Oct 25, 2011, 3:50 AM
Try this Code.
Pravin MorePosted Oct 25, 2011, 2:21 AM
try like this,
protected void Menu1_MenuItemClick(Object sender, System.Web.UI.WebControls.MenuEventArgs e)
{
switch(e.Item.Value)
{
case "Edit":
Response.Redirect("defualt3.aspx?")
// or Server.Transfer("defualt3.aspx", )
}
}
Thanks,
Pravin.