Files
ClientServerProject/软件系统浏览器模版/Views/Home/AdviceFeedback.cshtml
2017-07-30 22:40:40 +08:00

21 lines
603 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@{
ViewBag.Title = "意见反馈";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>请在下方填写意见反馈字数控制在1000字以内</h2>
@using (Html.BeginForm("AdviceFeedback", "Home", FormMethod.Post))
{
@Html.AntiForgeryToken()
<div class="form-group">
<label for="Advice">请输入建议</label>
<textarea class="form-control" id="Advice" placeholder="建议字数1000字以内"></textarea>
</div>
<button type="submit" class="btn btn-default">Submit</button>
}