.cshtml に次のコードがあります。
@Html.TextArea("txtComments", new { style = "width: 450px;", placeholder = "Enter Comments here" })
しかし、プレースホルダーはまったく表示されません。何か不足していますか?
ソース:
<textarea cols="20" id="txtComments" name="txtComments" placeholder="Enter Comments here" rows="2" style="width: 450px;">
</textarea>