私はこのURLナビゲーションを持っています:
<telerik:RadMenuItem runat="server" Text="View All Employees" NavigateUrl= "../../Employee/ViewAll" >
私が必要としているのは、naviagte url-employee /viewallの'Page.User.Identity.Name'を以下のコントローラーに渡すことです。
public ActionResult ViewAll()employees
{
return View(_emp.ViewAll());
}
ありがとう...