ASP MVC :Passing - Page.User.Identity.Name to controller

AlterBridgeFan1

New Member
i have this url navigation:\[code\]<telerik:RadMenuItem runat="server" Text="View All Employees" NavigateUrl= "../../Employee/ViewAll" >\[/code\]What i need is to pass 'Page.User.Identity.Name' in the naviagte url - employee/view all to controller below:\[code\]public ActionResult ViewAll()employees { return View(_emp.ViewAll()); }\[/code\]Thanks...
 
Back
Top