| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Razor」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
(ページの作成:「==Razor== [ASP.NET Core] ===ハイパーリンク=== https://www.buildinsider.net/web/bookaspmvc5/040301 @Html.ActionLink( "詳細", // リンク…」)
 
1行目: 1行目:
 
==Razor==
 
==Razor==
[ASP.NET Core]
+
[[ASP.NET Core]]
  
 
===ハイパーリンク===
 
===ハイパーリンク===
14行目: 14行目:
 
   new { tabindex = 1 } // その他の属性
 
   new { tabindex = 1 } // その他の属性
 
  )
 
  )
  <a href="/Result/Details/980-NI-05038-8?charset=utf8" tabindex="1"> 詳細 </a>
+
  &lt;a href="/Result/Details/980-NI-05038-8?charset=utf8" tabindex="1"&gt; 詳細 &lt;/a&gt;

2020年2月15日 (土) 08:05時点における版

Razor

ASP.NET Core

ハイパーリンク

https://www.buildinsider.net/web/bookaspmvc5/040301

@Html.ActionLink(
  "詳細",              // リンクテキスト
  "Details",           // アクション名
  "Result",            // コントローラー名
  "https",             // プロトコル名
  "www.wings.msn.to",  // ホスト名
  "memo",              // フラグメント(# ~以降)
  new { id = "980-NI-05038-8" }, // ルートパラメーター
  new { tabindex = 1 } // その他の属性
)
<a href="/Result/Details/980-NI-05038-8?charset=utf8" tabindex="1"> 詳細 </a>