Click here to Skip to main content
15,798,826 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionASP .Net Core, Global HTML sanitization. Pin
GKP199228-Feb-22 18:46
professionalGKP199228-Feb-22 18:46 
AnswerRe: ASP .Net Core, Global HTML sanitization. Pin
Richard Deeming28-Feb-22 22:50
mveRichard Deeming28-Feb-22 22:50 
GeneralRe: ASP .Net Core, Global HTML sanitization. Pin
GKP19921-Mar-22 0:44
professionalGKP19921-Mar-22 0:44 
QuestionASP.NetCore Freeze the header of html table Pin
pkfox22-Feb-22 22:29
professionalpkfox22-Feb-22 22:29 
AnswerRe: ASP.NetCore Freeze the header of html table Pin
Richard Deeming24-Feb-22 1:32
mveRichard Deeming24-Feb-22 1:32 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
pkfox24-Feb-22 3:09
professionalpkfox24-Feb-22 3:09 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
Richard Deeming24-Feb-22 22:33
mveRichard Deeming24-Feb-22 22:33 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
pkfox24-Feb-22 22:56
professionalpkfox24-Feb-22 22:56 
Probably easier to post _layout.cshtml
<!DOCTYPE html>
@inject IOptions<RestFactorySettings> Options;
@inject Microsoft.AspNetCore.Hosting.IWebHostEnvironment env;
@using System.Runtime.Versioning;

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>@ViewBag.Title</title>
    <link href="~/lib/bootstrap/dist/css/bootstrap.css" rel="stylesheet" />
    <link href="~/css/commands.css" rel="stylesheet" />
    <link href="~/css/site.css" rel="stylesheet" />
    <script src="~/js/DigitalClock.js"></script>
</head>

<body>
        <div class="fixed-top">
            <div class="container">
                <nav class="navbar navbar-expand-sm bg-dark navbar-dark">
                    <ul class="navbar-nav">
                        <li class="nav-item">
                            <a asp-action="GetCommands" asp-controller="Commands" class="nav-link">Commands</a>
                        </li>
                        <li class="nav-item">
                            <a asp-action="GetPlatforms" asp-controller="Platform" class="nav-link">Platforms</a>
                        </li>
                        <li class="nav-item">
                            <a asp-action="GetSiteDetails" asp-controller="Utils" class="nav-link">Site</a>
                        </li>
                        <li class="nav-item">
                            <a asp-action="GetActions" asp-controller="Utils" class="nav-link">Actions</a>
                        </li>
                        <li class="nav-item">
                            <a asp-action="GetClues" asp-controller="CCC" class="nav-link">CCC</a>
                        </li>
                        <li class="nav-item">
                            <a asp-action="GetSolverStats" asp-controller="CCC" class="nav-link">Solvers</a>
                        </li>
                        <li class="nav-item">
                            <a asp-action="GetComposerStats" asp-controller="CCC" class="nav-link">Composers</a>
                        </li>
                        <li class="nav-item">
                            <a asp-action="GetWord" asp-controller="RapidAPI" class="nav-link">Get Definition</a>
                        </li>
                        <li class="nav-item">
                            <a asp-action="GetRandomWord" asp-controller="RapidAPI" class="nav-link">Random Word</a>
                        </li>
                    </ul>
                </nav>
            </div>
        </div>
        <div class="container">
            @RenderBody()
            @RenderSection("OptionalStuff", false)
        </div>
       <br/>
</body>
</html>
"Life should not be a journey to the grave with the intention of arriving safely in a pretty and well-preserved body, but rather to skid in broadside in a cloud of smoke, thoroughly used up, totally worn out, and loudly proclaiming “Wow! What a Ride!" - Hunter S Thompson - RIP

GeneralRe: ASP.NetCore Freeze the header of html table Pin
Richard Deeming24-Feb-22 23:37
mveRichard Deeming24-Feb-22 23:37 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
pkfox25-Feb-22 0:14
professionalpkfox25-Feb-22 0:14 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
Richard Deeming25-Feb-22 0:23
mveRichard Deeming25-Feb-22 0:23 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
pkfox25-Feb-22 0:35
professionalpkfox25-Feb-22 0:35 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
Richard Deeming25-Feb-22 0:52
mveRichard Deeming25-Feb-22 0:52 
GeneralRe: ASP.NetCore Freeze the header of html table Pin
pkfox25-Feb-22 3:31
professionalpkfox25-Feb-22 3:31 
Questionselect data from two table of database based on one column of excel data which is uploaded . Pin
Member 1449552213-Feb-22 0:36
Member 1449552213-Feb-22 0:36 
AnswerRe: select data from two table of database based on one column of excel data which is uploaded . Pin
Richard Deeming14-Feb-22 4:46
mveRichard Deeming14-Feb-22 4:46 
AnswerRe: select data from two table of database based on one column of excel data which is uploaded . Pin
RedDk14-Feb-22 8:53
RedDk14-Feb-22 8:53 
QuestionAsp.Net Core. Sending requests with Postman. Pin
Kamil Kluska5-Feb-22 23:47
Kamil Kluska5-Feb-22 23:47 
AnswerRe: Asp.Net Core. Sending requests with Postman. Pin
Richard MacCutchan6-Feb-22 1:28
mveRichard MacCutchan6-Feb-22 1:28 
QuestionWhich one of the following codes has better performance in ASP.NET Core? Pin
Alex Dunlop4-Feb-22 22:05
Alex Dunlop4-Feb-22 22:05 
AnswerRe: Which one of the following codes has better performance in ASP.NET Core? Pin
Afzaal Ahmad Zeeshan5-Feb-22 4:27
professionalAfzaal Ahmad Zeeshan5-Feb-22 4:27 
QuestionWhat to use for a job scheduler for a .net app with plugins for each job Pin
jumbojs29-Jan-22 4:39
jumbojs29-Jan-22 4:39 
AnswerRe: What to use for a job scheduler for a .net app with plugins for each job Pin
Bohdan Stupak4-Feb-22 5:42
professionalBohdan Stupak4-Feb-22 5:42 
QuestionInitial design question on an ASP.NET Core MVC project. Pin
nstk20-Jan-22 10:21
nstk20-Jan-22 10:21 
Questionasp.net Pin
Member 1449552218-Jan-22 1:18
Member 1449552218-Jan-22 1:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.