@model EDAViewer.Models.EdaHtmlDiff @{ ViewBag.Title = "EDA HTML Diff"; string idForm = "Form"; string idSubmit = "Submit"; string idUp = "Up"; string idRoot = "Root"; string idRefresh = "Refresh"; string background = "Background"; //Background string viewEdaHtmlDiff = "ViewEdaHtmlDiff"; //ViewEdaHtmlDiff string actionNameForForm = nameof(EDAViewer.Controllers.HomeController.ViewEdaHtmlDiff); string actionNameForList = nameof(EDAViewer.Controllers.HomeController.GetDirectoriesOrFiles); string homeController = nameof(EDAViewer.Controllers.HomeController).Replace("Controller", string.Empty); }

@(ViewBag.Message)

@Html.Raw(ViewBag.Diff)
@Html.Raw(ViewBag.OldText)
@Html.Raw(ViewBag.NewText)
@using (Html.BeginForm(actionNameForForm, homeController, FormMethod.Post, new { id = idForm })) { @Html.AntiForgeryToken(); @Html.ValidationSummary(true); @Html.HiddenFor(m => m.user_name) @Html.HiddenFor(m => m.machine_name) @Html.HiddenFor(m => m.now_ticks) @Html.HiddenFor(m => m.PathAndFileName) @Html.HiddenFor(m => m.Paths)

@Html.LabelFor(m => m.CurrentPath) @Html.DropDownListFor(m => m.CurrentPath, new SelectList(Enumerable.Empty()), htmlAttributes: new { style = "min-width:600px" }) @Html.ValidationMessageFor(m => m.CurrentPath)

@Html.LabelFor(m => m.FileName) @Html.TextBoxFor(m => m.FileName, htmlAttributes: new { style = "min-width:600px" }) @Html.ValidationMessageFor(m => m.FileName)


}
@section scripts { }