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
/
BNBHospital
/
Views
/
Department
/
View File Name :
Details.cshtml
@model bnb.Models.DepartmentViewModel @{ ViewBag.Title = "Details"; Layout = "~/Views/Shared/_Layout.cshtml"; } <h2>Department Details</h2> <div> <hr /> <dl class="dl-horizontal"> <dt> @Html.DisplayNameFor(model => model.DepartmentName) </dt> <dd> @Html.DisplayFor(model => model.DepartmentName) </dd> <dt> @Html.DisplayNameFor(model => model.DepartmentNameNepali) </dt> <dd> @Html.DisplayFor(model => model.DepartmentNameNepali) </dd> <dt> @Html.DisplayNameFor(model => model.DepartmentCode) </dt> <dd> @Html.DisplayFor(model => model.DepartmentCode) </dd> <dt> @Html.DisplayNameFor(model => model.Url) </dt> <dd> @Html.DisplayFor(model => model.Url) </dd> <dt> @Html.DisplayNameFor(model => model.Thumbnail) </dt> <dd> @Html.DisplayFor(model => model.Thumbnail) </dd> <dt> @Html.DisplayNameFor(model => model.Logo) </dt> <dd> @Html.DisplayFor(model => model.Logo) </dd> <dt> @Html.DisplayNameFor(model => model.DisplayOrder) </dt> <dd> @Html.DisplayFor(model => model.DisplayOrder) </dd> <dt> @Html.DisplayNameFor(model => model.ShortDescription) </dt> <dd> @Html.Raw(Model.ShortDescription) </dd> <dt> @Html.DisplayNameFor(model => model.LongDescription) </dt> <dd> @Html.Raw(Model.LongDescription) </dd> <dt> @Html.DisplayNameFor(model => model.IsActive) </dt> <dd> @Html.DisplayFor(model => model.IsActive) </dd> </dl> </div> <div class="form-group"> <div class="col-md-offset-2 col-md-10"> @Html.ActionLink("Back to List", "Index", null, htmlAttributes: new { @class = "btn btn-info" }) </div> </div>