Exemplo n.º 1
0
        #pragma warning disable 1998
        public async override global::System.Threading.Tasks.Task ExecuteAsync()
        {
#line 3 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"

            var contentComments = "#comments";
            var contentNews     = "#news";

#line default
#line hidden
            BeginContext(140, 3372, true);
            WriteLiteral(@"
<link rel=""stylesheet"" href=""https://cdnjs.cloudflare.com/ajax/libs/rateYo/2.3.2/jquery.rateyo.min.css"">
<script src=""https://cdnjs.cloudflare.com/ajax/libs/rateYo/2.3.2/jquery.rateyo.min.js""></script>
<link rel=""stylesheet"" href=""https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.css"">
<script src=""https://cdn.jsdelivr.net/simplemde/latest/simplemde.min.js""></script>
<script src=""https://cdnjs.cloudflare.com/ajax/libs/markdown-it/9.0.1/markdown-it.min.js""></script>
<script src=""https://cdn.jsdelivr.net/npm/[email protected]/dist/showdown.min.js""></script>
<script type=""text/javascript""></script>
<script>
    $(document).ready(function () {

        $('#buttonDemo1').click(function () {
            var commentText = document.getElementById(""commentText"").value;
            var commentCampaignId = document.getElementById(""commentCampaignId"").value;
            $.ajax({
                type: 'GET',
                url: '/Project/AddComment?campId=' + commentCampaignId + '&value=' + commentTex");
            WriteLiteral(@"t,
                success: function (result) {
                    //var h4 = document.createElement('h4');
                    //h4.innerHTML = result;
                    //$('#commentList').prepend(h4);
                }
            });
        });
        number = Number(document.getElementById('idNumber').value);
        $('#buttonShowMoreComments').click(function () {
            var commentCampaignId = document.getElementById(""commentCampaignId"").value;
            $.ajax({
                type: 'GET',
                url: '/Project/ShowComments?campId=' + commentCampaignId + '&number=' + number,
                success: function (result) {
                    if (result.length != 0) {
                        number = Number(result[result.length - 1].id);
                        for (var i = 0; i < result.length; i++) {
                            var h4 = document.createElement('h4');
                            h4.innerHTML = result[i].userName + ':' + result[i].content;
        ");
            WriteLiteral(@"                    $('#commentList').append(h4);
                        }
                    }

                }
            });
        });
        var lastCommentId = Number(document.getElementById('idNumberLast').value);
        function update() {
            var commentCampaignId = document.getElementById(""commentCampaignId"").value;
            $.ajax({
                type: 'GET',
                url: '/Project/UpdateComments?campId=' + commentCampaignId + '&lastCommentId=' + lastCommentId,
                success: function (result) {

                    if (result.length != 0) {
                        lastCommentId = Number(result[result.length - 1].id);
                        for (var i = 0; i < result.length; i++) {
                            var h4 = document.createElement('h4');
                            h4.innerHTML = result[i].userName + ':' + result[i].content;
                            $('#commentList').prepend(h4);
                        }
                   ");
            WriteLiteral(@" }
                }
            });
        }

        setInterval(update, 2000);
    });
</script>


<div id='container'>
    <div class=""border-bottom shadow-sm"">
        <div class=""container"">
            <div class=""row"">
                <div class=""col-sm"">
                    ");
            EndContext();
            BeginContext(3512, 57, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("img", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "79179ab0afb0daa746011b2ab157bf4e974bafa412865", async() => {
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(3569, 113, true);
            WriteLiteral("\r\n                </div>\r\n                <div class=\"col-sm\">\r\n                    <h2 class=\"text-center mb-2\">");
            EndContext();
            BeginContext(3683, 10, false);
#line 83 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            Write(Model.Name);

#line default
#line hidden
            EndContext();
            BeginContext(3693, 39, true);
            WriteLiteral("</h2>\r\n                    <h6>Creator:");
            EndContext();
            BeginContext(3733, 14, false);
#line 84 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            Write(Model.UserName);

#line default
#line hidden
            EndContext();
            BeginContext(3747, 41, true);
            WriteLiteral("</h6>\r\n                    <h6>Total sum:");
            EndContext();
            BeginContext(3789, 14, false);
#line 85 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            Write(Model.TotalSum);

#line default
#line hidden
            EndContext();
            BeginContext(3803, 43, true);
            WriteLiteral("</h6>\r\n                    <h6>Current sum:");
            EndContext();
            BeginContext(3847, 16, false);
#line 86 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            Write(Model.CurrentSum);

#line default
#line hidden
            EndContext();
            BeginContext(3863, 42, true);
            WriteLiteral("</h6>\r\n                    <h6>Days to go:");
            EndContext();
            BeginContext(3906, 14, false);
#line 87 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            Write(Model.DaysToGo);

#line default
#line hidden
            EndContext();
            BeginContext(3920, 40, true);
            WriteLiteral("</h6>\r\n                    <h6>Category:");
            EndContext();
            BeginContext(3961, 14, false);
#line 88 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            Write(Model.Category);

#line default
#line hidden
            EndContext();
            BeginContext(3975, 60, true);
            WriteLiteral("</h6>\r\n\r\n                    <div>\r\n                        ");
            EndContext();
            BeginContext(4035, 61, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("ejs-button", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79179ab0afb0daa746011b2ab157bf4e974bafa416729", async() => {
            }
                                                                        );
            __Syncfusion_EJ2_Buttons_Button = CreateTagHelper <global::Syncfusion.EJ2.Buttons.Button>();
            __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Buttons_Button);
            __Syncfusion_EJ2_Buttons_Button.Id = (string)__tagHelperAttribute_3.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
            __Syncfusion_EJ2_Buttons_Button.Content = (string)__tagHelperAttribute_4.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(4096, 26, true);
            WriteLiteral("\r\n                        ");
            EndContext();
            BeginContext(4122, 884, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("ejs-dialog", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79179ab0afb0daa746011b2ab157bf4e974bafa418108", async() => {
                BeginContext(4241, 30, true);
                WriteLiteral("\r\n                            ");
                EndContext();
                BeginContext(4271, 696, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("e-content-template", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79179ab0afb0daa746011b2ab157bf4e974bafa418528", async() => {
                    BeginContext(4291, 89, true);
                    WriteLiteral("\r\n                                <h4>Contribution</h4>\r\n                                ");
                    EndContext();
                    BeginContext(4380, 536, false);
                    __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79179ab0afb0daa746011b2ab157bf4e974bafa419037", async() => {
                        BeginContext(4490, 419, true);
                        WriteLiteral(@"
                                    <div class=""form-group"">
                                        <input type=""number"" name=""Value"" />
                                    </div>
                                    <div class=""form-group"">
                                        <input type=""submit"" value=""Отправить"" class=""btn"" />
                                    </div>
                                ");
                        EndContext();
                    }
                                                                                );
                    __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
                    __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
                    __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
                    __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
                    __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Controller = (string)__tagHelperAttribute_5.Value;
                    __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
                    __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Action = (string)__tagHelperAttribute_6.Value;
                    __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
                    if (__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues == null)
                    {
                        throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-campName", "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", "RouteValues"));
                    }
                    BeginWriteTagHelperAttribute();
#line 95 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    WriteLiteral(Model.Name);

#line default
#line hidden
                    __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                    __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues["campName"] = __tagHelperStringValueBuffer;
                    __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-campName", __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues["campName"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    if (__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues == null)
                    {
                        throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-withBonus", "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", "RouteValues"));
                    }
                    __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.RouteValues["withBonus"] = (string)__tagHelperAttribute_7.Value;
                    __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
                    await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                    if (!__tagHelperExecutionContext.Output.IsContentModified)
                    {
                        await __tagHelperExecutionContext.SetOutputContentAsync();
                    }
                    Write(__tagHelperExecutionContext.Output);
                    __tagHelperExecutionContext = __tagHelperScopeManager.End();
                    EndContext();
                    BeginContext(4916, 30, true);
                    WriteLiteral("\r\n                            ");
                    EndContext();
                }
                                                                            );
                __Syncfusion_EJ2_ContentTemplate = CreateTagHelper <global::Syncfusion.EJ2.ContentTemplate>();
                __tagHelperExecutionContext.Add(__Syncfusion_EJ2_ContentTemplate);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(4967, 26, true);
                WriteLiteral("\r\n                        ");
                EndContext();
            }
                                                                        );
            __Syncfusion_EJ2_Popups_Dialog = CreateTagHelper <global::Syncfusion.EJ2.Popups.Dialog>();
            __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Popups_Dialog);
            __Syncfusion_EJ2_Popups_Dialog.Id = (string)__tagHelperAttribute_8.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
#line 92 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            __Syncfusion_EJ2_Popups_Dialog.IsModal = true;

#line default
#line hidden
            __tagHelperExecutionContext.AddTagHelperAttribute("isModal", __Syncfusion_EJ2_Popups_Dialog.IsModal, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
            __Syncfusion_EJ2_Popups_Dialog.Width = (string)__tagHelperAttribute_9.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
            __Syncfusion_EJ2_Popups_Dialog.OverlayClick = (string)__tagHelperAttribute_10.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10);
            __Syncfusion_EJ2_Popups_Dialog.Target = (string)__tagHelperAttribute_11.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_11);
#line 92 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            __Syncfusion_EJ2_Popups_Dialog.Visible = false;

#line default
#line hidden
            __tagHelperExecutionContext.AddTagHelperAttribute("visible", __Syncfusion_EJ2_Popups_Dialog.Visible, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(5006, 141, true);
            WriteLiteral("\r\n                    </div>\r\n                </div>\r\n            </div>\r\n            <div>\r\n                <iframe width=\"560\" height=\"315\"");
            EndContext();
            BeginWriteAttribute("src", " src=\"", 5147, "\"", 5165, 1);
#line 109 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            WriteAttributeValue("", 5153, Model.Video, 5153, 12, false);

#line default
#line hidden
            EndWriteAttribute();
            BeginContext(5166, 278, true);
            WriteLiteral(@" frameborder=""0"" allow=""accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"" allowfullscreen></iframe>
            </div>
        </div>
    </div>
    <div class=""container"">
        <div class=""row"">
            <div class=""col-sm"">
                ");
            EndContext();
            BeginContext(5444, 485, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("ejs-tab", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79179ab0afb0daa746011b2ab157bf4e974bafa427059", async() => {
                BeginContext(5469, 22, true);
                WriteLiteral("\r\n                    ");
                EndContext();
                BeginContext(5491, 410, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("e-tab-tabitems", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79179ab0afb0daa746011b2ab157bf4e974bafa427468", async() => {
                    BeginContext(5507, 26, true);
                    WriteLiteral("\r\n                        ");
                    EndContext();
                    BeginContext(5533, 101, false);
                    __tagHelperExecutionContext = __tagHelperScopeManager.Begin("e-tab-tabitem", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79179ab0afb0daa746011b2ab157bf4e974bafa427908", async() => {
                    }
                                                                                );
                    __Syncfusion_EJ2_Navigations_TabTabItem = CreateTagHelper <global::Syncfusion.EJ2.Navigations.TabTabItem>();
                    __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_TabTabItem);
#line 118 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    __Syncfusion_EJ2_Navigations_TabTabItem.Header = ViewBag.headerTextOne;

#line default
#line hidden
                    __tagHelperExecutionContext.AddTagHelperAttribute("header", __Syncfusion_EJ2_Navigations_TabTabItem.Header, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    BeginWriteTagHelperAttribute();
#line 118 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    WriteLiteral(Html.Raw(Model.Description));

#line default
#line hidden
                    __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                    __Syncfusion_EJ2_Navigations_TabTabItem.Content = __tagHelperStringValueBuffer;
                    __tagHelperExecutionContext.AddTagHelperAttribute("content", __Syncfusion_EJ2_Navigations_TabTabItem.Content, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                    if (!__tagHelperExecutionContext.Output.IsContentModified)
                    {
                        await __tagHelperExecutionContext.SetOutputContentAsync();
                    }
                    Write(__tagHelperExecutionContext.Output);
                    __tagHelperExecutionContext = __tagHelperScopeManager.End();
                    EndContext();
                    BeginContext(5634, 26, true);
                    WriteLiteral("\r\n                        ");
                    EndContext();
                    BeginContext(5660, 85, false);
                    __tagHelperExecutionContext = __tagHelperScopeManager.Begin("e-tab-tabitem", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79179ab0afb0daa746011b2ab157bf4e974bafa430198", async() => {
                    }
                                                                                );
                    __Syncfusion_EJ2_Navigations_TabTabItem = CreateTagHelper <global::Syncfusion.EJ2.Navigations.TabTabItem>();
                    __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_TabTabItem);
#line 119 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    __Syncfusion_EJ2_Navigations_TabTabItem.Header = ViewBag.headerTextTwo;

#line default
#line hidden
                    __tagHelperExecutionContext.AddTagHelperAttribute("header", __Syncfusion_EJ2_Navigations_TabTabItem.Header, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    BeginWriteTagHelperAttribute();
#line 119 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    WriteLiteral(contentNews);

#line default
#line hidden
                    __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                    __Syncfusion_EJ2_Navigations_TabTabItem.Content = __tagHelperStringValueBuffer;
                    __tagHelperExecutionContext.AddTagHelperAttribute("content", __Syncfusion_EJ2_Navigations_TabTabItem.Content, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                    if (!__tagHelperExecutionContext.Output.IsContentModified)
                    {
                        await __tagHelperExecutionContext.SetOutputContentAsync();
                    }
                    Write(__tagHelperExecutionContext.Output);
                    __tagHelperExecutionContext = __tagHelperScopeManager.End();
                    EndContext();
                    BeginContext(5745, 26, true);
                    WriteLiteral("\r\n                        ");
                    EndContext();
                    BeginContext(5771, 91, false);
                    __tagHelperExecutionContext = __tagHelperScopeManager.Begin("e-tab-tabitem", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79179ab0afb0daa746011b2ab157bf4e974bafa432472", async() => {
                    }
                                                                                );
                    __Syncfusion_EJ2_Navigations_TabTabItem = CreateTagHelper <global::Syncfusion.EJ2.Navigations.TabTabItem>();
                    __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_TabTabItem);
#line 120 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    __Syncfusion_EJ2_Navigations_TabTabItem.Header = ViewBag.headerTextThree;

#line default
#line hidden
                    __tagHelperExecutionContext.AddTagHelperAttribute("header", __Syncfusion_EJ2_Navigations_TabTabItem.Header, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    BeginWriteTagHelperAttribute();
#line 120 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    WriteLiteral(contentComments);

#line default
#line hidden
                    __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                    __Syncfusion_EJ2_Navigations_TabTabItem.Content = __tagHelperStringValueBuffer;
                    __tagHelperExecutionContext.AddTagHelperAttribute("content", __Syncfusion_EJ2_Navigations_TabTabItem.Content, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                    if (!__tagHelperExecutionContext.Output.IsContentModified)
                    {
                        await __tagHelperExecutionContext.SetOutputContentAsync();
                    }
                    Write(__tagHelperExecutionContext.Output);
                    __tagHelperExecutionContext = __tagHelperScopeManager.End();
                    EndContext();
                    BeginContext(5862, 22, true);
                    WriteLiteral("\r\n                    ");
                    EndContext();
                }
                                                                            );
                __Syncfusion_EJ2_Navigations_TabTabItems = CreateTagHelper <global::Syncfusion.EJ2.Navigations.TabTabItems>();
                __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_TabTabItems);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(5901, 18, true);
                WriteLiteral("\r\n                ");
                EndContext();
            }
                                                                        );
            __Syncfusion_EJ2_Navigations_Tab = CreateTagHelper <global::Syncfusion.EJ2.Navigations.Tab>();
            __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_Tab);
            __Syncfusion_EJ2_Navigations_Tab.Id = (string)__tagHelperAttribute_12.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_12);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(5929, 99, true);
            WriteLiteral("\r\n            </div>\r\n            <div class=\"col-sm\">\r\n                <table class=\"container\">\r\n");
            EndContext();
#line 126 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            foreach (Bonus b in Model.Bonuses)
            {
#line default
#line hidden
                BeginContext(6115, 74, true);
                WriteLiteral("                            <tr>\r\n                                <td><h3>");
                EndContext();
                BeginContext(6190, 6, false);
#line 130 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                Write(b.Name);

#line default
#line hidden
                EndContext();
                BeginContext(6196, 52, true);
                WriteLiteral("</h3></td>\r\n                                <td><h3>");
                EndContext();
                BeginContext(6249, 5, false);
#line 131 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                Write(b.Sum);

#line default
#line hidden
                EndContext();
                BeginContext(6254, 50, true);
                WriteLiteral(" $</h3></td>\r\n                                <td>");
                EndContext();
                BeginContext(6304, 117, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "79179ab0afb0daa746011b2ab157bf4e974bafa437786", async() => {
                    BeginContext(6411, 6, true);
                    WriteLiteral("Get it");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_5.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_13.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_13);
                if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
                {
                    throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-bonusId", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
                }
                BeginWriteTagHelperAttribute();
#line 132 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                WriteLiteral(b.Id);

#line default
#line hidden
                __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["bonusId"] = __tagHelperStringValueBuffer;
                __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-bonusId", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["bonusId"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_14);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(6421, 42, true);
                WriteLiteral("</td>\r\n                            </tr>\r\n");
                EndContext();
#line 134 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            }


#line default
#line hidden
            BeginContext(6515, 190, true);
            WriteLiteral("                </table>\r\n                \r\n            </div>\r\n        </div>\r\n    </div>\r\n    <div id=\"comments\" style=\"display:none\">\r\n        <fieldset>\r\n            <input type=\"hidden\"");
            EndContext();
            BeginWriteAttribute("value", " value=\"", 6705, "\"", 6722, 1);
#line 144 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            WriteAttributeValue("", 6713, Model.Id, 6713, 9, false);

#line default
#line hidden
            EndWriteAttribute();
            BeginContext(6723, 268, true);
            WriteLiteral(@" id=""commentCampaignId"" />
            <input type=""text"" id=""commentText"" />
            <input type=""button"" value=""Send Comment"" id=""buttonDemo1"" />
            <br />
            <span id=""result1""></span>
        </fieldset>
        <div id=""commentList"">
");
            EndContext();
#line 151 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"

            var orderByComments = from c in Model.Comments
                                  orderby c.Time descending
                                  select c;
            List <Comment> comments = orderByComments.ToList();
            if (comments.Count != 0)
            {
                if (comments.Count >= 5)
                {
#line default
#line hidden
                    BeginContext(7383, 65, true);
                    WriteLiteral("                        <input type=\"number\" style=\"display:none\"");
                    EndContext();
                    BeginWriteAttribute("value", " value=\"", 7448, "\"", 7471, 1);
#line 160 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    WriteAttributeValue("", 7456, comments[4].Id, 7456, 15, false);

#line default
#line hidden
                    EndWriteAttribute();
                    BeginContext(7472, 19, true);
                    WriteLiteral(" id=\"idNumber\" />\r\n");
                    EndContext();
#line 161 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    for (int i = 0; i < 5; i++)
                    {
#line default
#line hidden
                        BeginContext(7571, 32, true);
                        WriteLiteral("                            <h4>");
                        EndContext();
                        BeginContext(7604, 16, false);
#line 163 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                        Write(comments[i].User);

#line default
#line hidden
                        EndContext();
                        BeginContext(7620, 1, true);
                        WriteLiteral(":");
                        EndContext();
                        BeginContext(7622, 19, false);
#line 163 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                        Write(comments[i].Content);

#line default
#line hidden
                        EndContext();
                        BeginContext(7641, 7, true);
                        WriteLiteral("</h4>\r\n");
                        EndContext();
#line 164 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    }
                }
                else
                {
#line default
#line hidden
                    BeginContext(7747, 65, true);
                    WriteLiteral("                        <input type=\"number\" style=\"display:none\"");
                    EndContext();
                    BeginWriteAttribute("value", " value=\"", 7812, "\"", 7850, 1);
#line 168 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    WriteAttributeValue("", 7820, comments[comments.Count - 1].Id, 7820, 30, false);

#line default
#line hidden
                    EndWriteAttribute();
                    BeginContext(7851, 19, true);
                    WriteLiteral(" id=\"idNumber\" />\r\n");
                    EndContext();
#line 169 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    for (int i = 0; i < comments.Count; i++)
                    {
#line default
#line hidden
                        BeginContext(7962, 32, true);
                        WriteLiteral("                            <h4>");
                        EndContext();
                        BeginContext(7995, 16, false);
#line 171 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                        Write(comments[i].User);

#line default
#line hidden
                        EndContext();
                        BeginContext(8011, 1, true);
                        WriteLiteral(":");
                        EndContext();
                        BeginContext(8013, 19, false);
#line 171 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                        Write(comments[i].Content);

#line default
#line hidden
                        EndContext();
                        BeginContext(8032, 7, true);
                        WriteLiteral("</h4>\r\n");
                        EndContext();
#line 172 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                    }
                }

#line default
#line hidden
                BeginContext(8089, 61, true);
                WriteLiteral("                    <input type=\"number\" style=\"display:none\"");
                EndContext();
                BeginWriteAttribute("value", " value=\"", 8150, "\"", 8173, 1);
#line 174 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                WriteAttributeValue("", 8158, comments[0].Id, 8158, 15, false);

#line default
#line hidden
                EndWriteAttribute();
                BeginContext(8174, 23, true);
                WriteLiteral(" id=\"idNumberLast\" />\r\n");
                EndContext();
#line 175 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            }


#line default
#line hidden
            BeginContext(8235, 149, true);
            WriteLiteral("        </div>\r\n        <input type=\"button\" value=\"Show more\" id=\"buttonShowMoreComments\" />\r\n    </div>\r\n    <div id=\"news\" style=\"display:none\">\r\n");
            EndContext();
#line 183 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"

            foreach (News news in Model.News)
            {
#line default
#line hidden
                BeginContext(8458, 128, true);
                WriteLiteral("                <div class=\"border mt-4\">\r\n                    <div class=\"container\">\r\n                <h4 class=\"text-center\">");
                EndContext();
                BeginContext(8587, 11, false);
#line 188 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                Write(news.Header);

#line default
#line hidden
                EndContext();
                BeginContext(8598, 23, true);
                WriteLiteral("</h4>\r\n                ");
                EndContext();
                BeginContext(8622, 22, false);
#line 189 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
                Write(Html.Raw(news.Content));

#line default
#line hidden
                EndContext();
                BeginContext(8644, 58, true);
                WriteLiteral("\r\n                    </div>\r\n                    </div>\r\n");
                EndContext();
#line 192 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Project\ShowProjectInfo.cshtml"
            }


#line default
#line hidden
            BeginContext(8728, 690, true);
            WriteLiteral(@"    </div>
</div>
<script>
    document.getElementById('targetButton').onclick = function () {
        var dialogObj = document.getElementById('dialog').ej2_instances[0];
        dialogObj.show();
    }
    function onOverlayClick() {
        var dialog = document.getElementById(""dialog"").ej2_instances[0];
        dialog.hide();
    }
    document.getElementById('getBonusButton').onclick = function () {
        var dialogObj = document.getElementById('dialog3').ej2_instances[0];
        dialogObj.show();
    }
    function onOverlayClick3() {
        var dialog = document.getElementById(""dialog3"").ej2_instances[0];
        dialog.hide();
    }
</script>




");
            EndContext();
        }
Exemplo n.º 2
0
        #pragma warning disable 1998
        public async override global::System.Threading.Tasks.Task ExecuteAsync()
        {
#line 2 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"

            var contentInformation = "#information";
            var contentCampaigns   = "#campaigns";
            var contentBonuses     = "#bonuses";
            var contentAdmin       = "#admin";

#line default
#line hidden
            BeginContext(182, 64, true);
            WriteLiteral("<div>\r\n    <div id=\"information\" style=\"display:none\">\r\n        ");
            EndContext();
            BeginContext(246, 175, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("ejs-inplaceeditor", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f9917", async() => {
                BeginContext(391, 10, true);
                WriteLiteral("\r\n        ");
                EndContext();
            }
                                                                        );
            __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor = CreateTagHelper <global::Syncfusion.EJ2.InPlaceEditor.InPlaceEditor>();
            __tagHelperExecutionContext.Add(__Syncfusion_EJ2_InPlaceEditor_InPlaceEditor);
            __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.Id = (string)__tagHelperAttribute_0.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
#line 10 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
            __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.Mode = global::Syncfusion.EJ2.InPlaceEditor.RenderMode.Inline;

#line default
#line hidden
            __tagHelperExecutionContext.AddTagHelperAttribute("mode", __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.Mode, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
#line 10 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
            __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.Type = global::Syncfusion.EJ2.InPlaceEditor.InputType.Text;

#line default
#line hidden
            __tagHelperExecutionContext.AddTagHelperAttribute("type", __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.Type, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
#line 10 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
            __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.Value = Model.RealName;

#line default
#line hidden
            __tagHelperExecutionContext.AddTagHelperAttribute("value", __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.Value, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
#line 10 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
            __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.SubmitOnEnter = true;

#line default
#line hidden
            __tagHelperExecutionContext.AddTagHelperAttribute("submitOnEnter", __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.SubmitOnEnter, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
            __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.Name = (string)__tagHelperAttribute_1.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
            __Syncfusion_EJ2_InPlaceEditor_InPlaceEditor.Created = (string)__tagHelperAttribute_2.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(421, 10, true);
            WriteLiteral("\r\n        ");
            EndContext();
            BeginContext(431, 266, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f13357", async() => {
                BeginContext(480, 210, true);
                WriteLiteral("\r\n            <input type=\"hidden\"  name=\"name\" id=\"nameValue\"/>\r\n            <div class=\"form-group\">\r\n                <input type=\"submit\" value=\"Save\" class=\"btn\" id=\"saveBtn\"/>\r\n            </div>\r\n        ");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Controller = (string)__tagHelperAttribute_3.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
            __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Action = (string)__tagHelperAttribute_4.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(697, 59, true);
            WriteLiteral("\r\n    </div>\r\n    <div id=\"bonuses\" style=\"display:none\">\r\n");
            EndContext();
#line 20 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"


            foreach (UserBonus bonus in Model.UserBonuses)
            {
#line default
#line hidden
                BeginContext(845, 20, true);
                WriteLiteral("                <h6>");
                EndContext();
                BeginContext(866, 16, false);
#line 24 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                Write(bonus.Bonus.Name);

#line default
#line hidden
                EndContext();
                BeginContext(882, 7, true);
                WriteLiteral("</h6>\r\n");
                EndContext();
#line 25 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
            }


#line default
#line hidden
            BeginContext(915, 82, true);
            WriteLiteral("    </div>\r\n<div id=\"campaigns\" style=\"display:none\">\r\n    <table class=\"table\">\r\n");
            EndContext();
#line 30 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"

            foreach (Campaign campaign in Model.Campaigns)
            {
#line default
#line hidden
                BeginContext(1072, 64, true);
                WriteLiteral("            <tr>\r\n                <td>\r\n                    <h3>");
                EndContext();
                BeginContext(1137, 13, false);
#line 35 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                Write(campaign.Name);

#line default
#line hidden
                EndContext();
                BeginContext(1150, 72, true);
                WriteLiteral("</h3>\r\n                </td>\r\n                <td>\r\n                    ");
                EndContext();
                BeginContext(1222, 124, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f17307", async() => {
                    BeginContext(1338, 4, true);
                    WriteLiteral("Edit");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
                __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_6.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_7.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
                if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
                {
                    throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-campId", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
                }
                BeginWriteTagHelperAttribute();
#line 38 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                WriteLiteral(campaign.Id);

#line default
#line hidden
                __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["campId"] = __tagHelperStringValueBuffer;
                __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-campId", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["campId"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(1346, 67, true);
                WriteLiteral("\r\n                </td>\r\n                <td>\r\n                    ");
                EndContext();
                BeginContext(1413, 128, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f20085", async() => {
                    BeginContext(1533, 4, true);
                    WriteLiteral("Open");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
                __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_9.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9);
                if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
                {
                    throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-campId", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
                }
                BeginWriteTagHelperAttribute();
#line 41 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                WriteLiteral(campaign.Id);

#line default
#line hidden
                __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["campId"] = __tagHelperStringValueBuffer;
                __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-campId", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["campId"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(1541, 63, true);
                WriteLiteral("\r\n                </td>\r\n                <td>\r\n                ");
                EndContext();
                BeginContext(1604, 134, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f22863", async() => {
                    BeginContext(1728, 6, true);
                    WriteLiteral("Delete");
                    EndContext();
                }
                                                                            );
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
                __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
                __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_10);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_6.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_11.Value;
                __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_11);
                if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
                {
                    throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-cmpId", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
                }
                BeginWriteTagHelperAttribute();
#line 44 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                WriteLiteral(campaign.Id);

#line default
#line hidden
                __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["cmpId"] = __tagHelperStringValueBuffer;
                __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-cmpId", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["cmpId"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(1738, 48, true);
                WriteLiteral("\r\n                    </td>\r\n            </tr>\r\n");
                EndContext();
#line 47 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
            }


#line default
#line hidden
            BeginContext(1804, 77, true);
            WriteLiteral("        </table>\r\n</div>\r\n    <div id=\"admin\" style=\"display:none\">\r\n        ");
            EndContext();
            BeginContext(1881, 67, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f25954", async() => {
                BeginContext(1939, 5, true);
                WriteLiteral("Users");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_12.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_12);
            __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_13.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_13);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_14);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(1948, 10, true);
            WriteLiteral("\r\n        ");
            EndContext();
            BeginContext(1958, 81, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f27629", async() => {
                BeginContext(2026, 9, true);
                WriteLiteral("Campaigns");
                EndContext();
            }
                                                                        );
            __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper <global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
            __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
            __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_15.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_15);
            __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_16.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_16);
            __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_14);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(2039, 67, true);
            WriteLiteral("\r\n    </div>\r\n<div class=\"container\">\r\n    <div class=\"mt-4\">\r\n    ");
            EndContext();
            BeginContext(2106, 678, false);
            __tagHelperExecutionContext = __tagHelperScopeManager.Begin("ejs-tab", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f29376", async() => {
                BeginContext(2178, 10, true);
                WriteLiteral("\r\n        ");
                EndContext();
                BeginContext(2188, 580, false);
                __tagHelperExecutionContext = __tagHelperScopeManager.Begin("e-tab-tabitems", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f29773", async() => {
                    BeginContext(2204, 14, true);
                    WriteLiteral("\r\n            ");
                    EndContext();
                    BeginContext(2218, 92, false);
                    __tagHelperExecutionContext = __tagHelperScopeManager.Begin("e-tab-tabitem", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f30200", async() => {
                    }
                                                                                );
                    __Syncfusion_EJ2_Navigations_TabTabItem = CreateTagHelper <global::Syncfusion.EJ2.Navigations.TabTabItem>();
                    __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_TabTabItem);
#line 59 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                    __Syncfusion_EJ2_Navigations_TabTabItem.Header = ViewBag.headerTextOne;

#line default
#line hidden
                    __tagHelperExecutionContext.AddTagHelperAttribute("header", __Syncfusion_EJ2_Navigations_TabTabItem.Header, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    BeginWriteTagHelperAttribute();
#line 59 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                    WriteLiteral(contentInformation);

#line default
#line hidden
                    __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                    __Syncfusion_EJ2_Navigations_TabTabItem.Content = __tagHelperStringValueBuffer;
                    __tagHelperExecutionContext.AddTagHelperAttribute("content", __Syncfusion_EJ2_Navigations_TabTabItem.Content, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                    if (!__tagHelperExecutionContext.Output.IsContentModified)
                    {
                        await __tagHelperExecutionContext.SetOutputContentAsync();
                    }
                    Write(__tagHelperExecutionContext.Output);
                    __tagHelperExecutionContext = __tagHelperScopeManager.End();
                    EndContext();
                    BeginContext(2310, 14, true);
                    WriteLiteral("\r\n            ");
                    EndContext();
                    BeginContext(2324, 90, false);
                    __tagHelperExecutionContext = __tagHelperScopeManager.Begin("e-tab-tabitem", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f32447", async() => {
                    }
                                                                                );
                    __Syncfusion_EJ2_Navigations_TabTabItem = CreateTagHelper <global::Syncfusion.EJ2.Navigations.TabTabItem>();
                    __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_TabTabItem);
#line 60 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                    __Syncfusion_EJ2_Navigations_TabTabItem.Header = ViewBag.headerTextTwo;

#line default
#line hidden
                    __tagHelperExecutionContext.AddTagHelperAttribute("header", __Syncfusion_EJ2_Navigations_TabTabItem.Header, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    BeginWriteTagHelperAttribute();
#line 60 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                    WriteLiteral(contentCampaigns);

#line default
#line hidden
                    __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                    __Syncfusion_EJ2_Navigations_TabTabItem.Content = __tagHelperStringValueBuffer;
                    __tagHelperExecutionContext.AddTagHelperAttribute("content", __Syncfusion_EJ2_Navigations_TabTabItem.Content, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                    if (!__tagHelperExecutionContext.Output.IsContentModified)
                    {
                        await __tagHelperExecutionContext.SetOutputContentAsync();
                    }
                    Write(__tagHelperExecutionContext.Output);
                    __tagHelperExecutionContext = __tagHelperScopeManager.End();
                    EndContext();
                    BeginContext(2414, 14, true);
                    WriteLiteral("\r\n            ");
                    EndContext();
                    BeginContext(2428, 90, false);
                    __tagHelperExecutionContext = __tagHelperScopeManager.Begin("e-tab-tabitem", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f34692", async() => {
                    }
                                                                                );
                    __Syncfusion_EJ2_Navigations_TabTabItem = CreateTagHelper <global::Syncfusion.EJ2.Navigations.TabTabItem>();
                    __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_TabTabItem);
#line 61 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                    __Syncfusion_EJ2_Navigations_TabTabItem.Header = ViewBag.headerTextThree;

#line default
#line hidden
                    __tagHelperExecutionContext.AddTagHelperAttribute("header", __Syncfusion_EJ2_Navigations_TabTabItem.Header, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    BeginWriteTagHelperAttribute();
#line 61 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                    WriteLiteral(contentBonuses);

#line default
#line hidden
                    __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                    __Syncfusion_EJ2_Navigations_TabTabItem.Content = __tagHelperStringValueBuffer;
                    __tagHelperExecutionContext.AddTagHelperAttribute("content", __Syncfusion_EJ2_Navigations_TabTabItem.Content, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                    await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                    if (!__tagHelperExecutionContext.Output.IsContentModified)
                    {
                        await __tagHelperExecutionContext.SetOutputContentAsync();
                    }
                    Write(__tagHelperExecutionContext.Output);
                    __tagHelperExecutionContext = __tagHelperScopeManager.End();
                    EndContext();
                    BeginContext(2518, 2, true);
                    WriteLiteral("\r\n");
                    EndContext();
#line 62 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"

                    if (User.IsInRole("Admin"))
                    {
#line default
#line hidden
                        BeginContext(2600, 20, true);
                        WriteLiteral("                    ");
                        EndContext();
                        BeginContext(2620, 87, false);
                        __tagHelperExecutionContext = __tagHelperScopeManager.Begin("e-tab-tabitem", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "0ca44c5170d0a1c0e4cd8924d656b37978f1e29f37274", async() => {
                        }
                                                                                    );
                        __Syncfusion_EJ2_Navigations_TabTabItem = CreateTagHelper <global::Syncfusion.EJ2.Navigations.TabTabItem>();
                        __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_TabTabItem);
#line 65 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                        __Syncfusion_EJ2_Navigations_TabTabItem.Header = ViewBag.headerTextFour;

#line default
#line hidden
                        __tagHelperExecutionContext.AddTagHelperAttribute("header", __Syncfusion_EJ2_Navigations_TabTabItem.Header, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                        BeginWriteTagHelperAttribute();
#line 65 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                        WriteLiteral(contentAdmin);

#line default
#line hidden
                        __tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
                        __Syncfusion_EJ2_Navigations_TabTabItem.Content = __tagHelperStringValueBuffer;
                        __tagHelperExecutionContext.AddTagHelperAttribute("content", __Syncfusion_EJ2_Navigations_TabTabItem.Content, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
                        await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                        if (!__tagHelperExecutionContext.Output.IsContentModified)
                        {
                            await __tagHelperExecutionContext.SetOutputContentAsync();
                        }
                        Write(__tagHelperExecutionContext.Output);
                        __tagHelperExecutionContext = __tagHelperScopeManager.End();
                        EndContext();
                        BeginContext(2707, 2, true);
                        WriteLiteral("\r\n");
                        EndContext();
#line 66 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
                    }


#line default
#line hidden
                    BeginContext(2743, 8, true);
                    WriteLiteral("        ");
                    EndContext();
                }
                                                                            );
                __Syncfusion_EJ2_Navigations_TabTabItems = CreateTagHelper <global::Syncfusion.EJ2.Navigations.TabTabItems>();
                __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_TabTabItems);
                await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
                if (!__tagHelperExecutionContext.Output.IsContentModified)
                {
                    await __tagHelperExecutionContext.SetOutputContentAsync();
                }
                Write(__tagHelperExecutionContext.Output);
                __tagHelperExecutionContext = __tagHelperScopeManager.End();
                EndContext();
                BeginContext(2768, 6, true);
                WriteLiteral("\r\n    ");
                EndContext();
            }
                                                                        );
            __Syncfusion_EJ2_Navigations_Tab = CreateTagHelper <global::Syncfusion.EJ2.Navigations.Tab>();
            __tagHelperExecutionContext.Add(__Syncfusion_EJ2_Navigations_Tab);
            __Syncfusion_EJ2_Navigations_Tab.Id = (string)__tagHelperAttribute_17.Value;
            __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_17);
#line 57 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
            __Syncfusion_EJ2_Navigations_Tab.HeaderPlacement = global::Syncfusion.EJ2.Navigations.HeaderPosition.Top;

#line default
#line hidden
            __tagHelperExecutionContext.AddTagHelperAttribute("headerPlacement", __Syncfusion_EJ2_Navigations_Tab.HeaderPlacement, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
#line 57 "D:\Itransition\CrowdfundingWeb\CrowdfundingWeb\Views\Profile\ShowProfile.cshtml"
            __Syncfusion_EJ2_Navigations_Tab.HeightAdjustMode = global::Syncfusion.EJ2.Navigations.HeightStyles.Auto;

#line default
#line hidden
            __tagHelperExecutionContext.AddTagHelperAttribute("heightAdjustMode", __Syncfusion_EJ2_Navigations_Tab.HeightAdjustMode, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
            await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);

            if (!__tagHelperExecutionContext.Output.IsContentModified)
            {
                await __tagHelperExecutionContext.SetOutputContentAsync();
            }
            Write(__tagHelperExecutionContext.Output);
            __tagHelperExecutionContext = __tagHelperScopeManager.End();
            EndContext();
            BeginContext(2784, 324, true);
            WriteLiteral(@"
    </div>
    </div>
</div>
<script>
        var editObj;
        function editorCreated() {
            editObj = document.getElementById(""inplace_editor"").ej2_instances[0];
    }
    $(""#saveBtn"").click(function () {
        document.getElementById(""nameValue"").value = editObj.value;
    });
    
</script>");
            EndContext();
        }