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 :
CreateVideos.cshtml
@model HRDC.Models.Video @{ ViewBag.Title = "Create"; Layout = "~/Views/Shared/_AdminLayout.cshtml"; } @using (Html.BeginForm("CreateVideos", "Dashboard", FormMethod.Post)) { @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 Video </div> <div class="panel-body"> <div class="form-group"> @Html.LabelFor(model => model.VideoCaption) @Html.EditorFor(model => model.VideoCaption, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.VideoCaption, "", new { @class = "text-danger" }) </div> <div class="form-group"> @Html.LabelFor(model => model.VideoURL) @Html.EditorFor(model => model.VideoURL, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.VideoURL, "", new { @class = "text-danger" }) </div> <div class="form-group"> @Html.LabelFor(model => model.VideoPublishDate) @Html.EditorFor(model => model.VideoPublishDate, new { htmlAttributes = new { @class = "date-picker form-control" } }) @Html.ValidationMessageFor(model => model.VideoPublishDate, "", new { @class = "text-danger" }) </div> <input type="submit" value="Create" class="btn btn-info" /> </div> </div> </div> </div> } <div> @Html.ActionLink("Back to List", "ManageVideos") </div>