Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
デフォルトの「Site.master」マスター ページを使用して Web サイトを開発しています。Site.master のナビゲーション メニューで利用可能なメニュー項目の値にアクセスしたい。たとえば、「ホーム」および「概要」ナビゲーション メニュー項目の値。私は新しいので、助けが必要です。
Menu mn = (Menu)Master.FindControl("id_of_menu_control"); foreach (MenuItem item in mn.Items) { string navigate = item.NavigateUrl; /// Other stuffs you want to do }