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.
まあ言ってみれば { string domain="domain.com"; }
{ string domain="domain.com"; }
出力したい
webmaster@domain.com、だから私は使用します
webmaster@domain.com
webmaster@@domain動作しない
webmaster@@domain
正しい構文をアドバイスしてください
おそらく最も簡単な方法ではありませんが、試してみます
@Html.Raw(string.Format("webmaster@{0}", domain))
OPが(賢く)気づいたように
@string.Format("webmaster@{0}", domain)
私が考えることができる最も簡単な方法:
webmaster@@@domain
-また-
@("webmaster@" + domain)