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.
cshtml ページに AZ フィルターを追加したいと考えています。それを追加するのを手伝ってくれる人はいますか?
目次ページが欲しい。そして、Aを1回クリックすると、コントロールはクエリ文字列でAに移動します。
次のような意味です。
<ul> @for (int i = 65; i < 91; i++) { <li>@Html.ActionLink(((char) i).ToString(), "Index","Home", new {query = (char) i}, null) </li> } </ul>