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 ファイルでは、
@{ var tooltip = "Once a day"; } <table> <tr> <th title=@tooltip>A</th> <th title="Once a day">B</th> </tr> </table>
最初のセルには「1 回」しか表示されませんが、2 番目のセルには「1 日 1 回」が正しく表示されます。多くの場所で同じ変数を使用したい。この問題を解決するにはどうすればよいですか?