@model atakanozbancom.Models.classes.AdminMyProjectsEditVM
@{
ViewBag.Title = "myprojectsget";
Layout = "~/Views/Shared/_AdminLayout.cshtml";
}
My Projects Edit Post
@if (TempData["ok"] != null)
{
@TempData["ok"]
}
@using (Html.BeginForm("myprojectsget", "admin", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
@Html.AntiForgeryToken()
@Html.HiddenFor(m => m.id)
@Html.LabelFor(m => m.id, new { @class = "text-white" })
@Html.TextBoxFor(m => m.id, new { @class = "form-control bg-dark text-white", @readonly = "readonly" })
@Html.LabelFor(m => m.TitleEN, new { @class = "text-white" })
@Html.TextBoxFor(m => m.TitleEN, new { @class = "form-control bg-dark text-white required" })
@Html.LabelFor(m => m.DescEN, new { @class = "text-white" })
@Html.TextAreaFor(m => m.DescEN, new { @class = "form-control bg-dark text-white required", rows = "6" })
if (!string.IsNullOrEmpty(Model.image))
{
}
@Html.LabelFor(m => m.iframe, new { @class = "text-white" })
@Html.TextBoxFor(m => m.iframe, new { @class = "form-control bg-dark text-white" })
Translation (TR)
@Html.LabelFor(m => m.TitleTR, new { @class = "text-white" })
@Html.TextBoxFor(m => m.TitleTR, new { @class = "form-control bg-dark text-white required" })
@Html.LabelFor(m => m.DescTR, new { @class = "text-white" })
@Html.TextAreaFor(m => m.DescTR, new { @class = "form-control bg-dark text-white required", rows = "6" })
}