ASP.NET Easy Menu - Menu item postback

To call a server event after you click on menu item you need to use,
as you can see inside the suite example, an invisible button:
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" style="display:none" />

Also a helpful control is a hidden input for storing the id of the clicked menu item:
<input type="hidden" id="Hidden1" runat="server" />

The server event that is called is the event that is triggered when the button is clicked
(currently not allowed because is not visible):
protected void Button1_Click(object sender, EventArgs e)
{
    ...some code...
}

The last important thing is the client event triggered by the menu item.
The event is set using menu item server property "OnClientClick":
<oem:MenuItem InnerHtml="<b>Server event 1</b>" ID="menuItem2" OnClientClick="CallServerEvent('menuItem2')"></oem:MenuItem>

Client-side event

function CallServerEvent(argument)
{
    // store the clicked item id
    document.getElementById('<%=Hidden1.ClientID %>').value = argument;
    // call the server side event (same as button click)
    <%= Page.ClientScript.GetPostBackEventReference(this.Button1, "") %>
}

Mouse over the gray box to see the menu.
Clicking on the second and third item in the menu will cause a postback to server.

 
 




Download Download this working example.

"I love your asp.net components and they help me a great deal. Thank you so much to obout and it's developers! you guys make our life a lot easier and fun to do coding. "

Shwe Phyo Khun

obout.com
obout.com Home
News
Easy Menu Home 
Easy Menu Home
Download
Site Map
Compare with Text Menu
Examples - 47
Horizontal - 15
Horizontal 1
Horizontal 2
Horizontal 3
Horizontal 4
Horizontal 5
Horizontal 6
Horizontal 7
Horizontal 8
Horizontal Right To Left
Transparent - over flash
Transparent - over iframe
MSDN
MSDN 2
With rounded corners
Keep Open New
Vertical - 3
Vertical 1
MS Vertical
Vertical Right To Left
ContexMenu - 10
World Map
Default
Futura
VSNET
Windows
WindowsXP
Style 1
Style 2
Style 3
Right To Left
Tab Strip - 20
Tab Strip
Tab Strip - With postback New
Different Styles - 14
TabStrip1
TabStrip2
TabStrip3
TabStrip4
TabStrip5
TabStrip6
TabStrip7
TabStrip8
TabStrip9
TabStrip10
TabStrip11
TabStrip12
Yahoo TabStrip
Parent Child Tabstrip New
Tab Strip - Wizard
Tab Strip - Wizard 2
Add / Remove Tabs
Add / Remove Tabs 2
Time Picker
Features - 46
Fast loading time
Multi Column Menu - 2
Multi Column Submenu New
Multi Column Submenu with Icons New
Multiple menus - 3
Multiple menus
Multiple menus 2
Horizontal menu and Tab Strip
Operations - 9
ShowEvent New
Add / Remove Items New
Hide / Show Items New
Menu item inner HTML New
Attach / Detach
Menu Events
OnClientClick
Menu item postback
Show menu New
Align/Position - 4
Align
Advanced Align
Menu Offsets
Position
Integration  - 13
TreeView - 5
Attach to TreeView
Dynamic Loading
Inside callback panel
Select the TreeView node New
TreeView inside Easy Menu
AJAX Page - 3
Inside AJAX Page panel
Inside MS AJAX panel
Add items server side
Grid - 2
Use With Grid
Inside DataGrid column
Inside WindowNew
Build from SiteMap
Over Java Applet New
Other features - 15
AttachTo
Menu Icons
Menu Customize
Long vertical menus
Long menu items
Disabled menu item
Sub-menus
Custom Menu Items
Using Database
Postback Persistance
Dynamic Easy Menu Item
Full Easy Menu width
Hide menu with time delay
Custom sliding effect New
Custom Menu Content New
Knowledge Base - 2
Knowledge Base
Documentation - 4
Server side
Client side
Using the correct path
ChangeLog