Skip to content

Instantly share code, notes, and snippets.

@dush-a
dush-a / windows-keys.md
Created December 19, 2024 17:47 — forked from rvrsh3ll/windows-keys.md
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@dush-a
dush-a / _Footer.cshtml
Created February 19, 2023 12:21
ASP.NET Core partial Razor Page
@dush-a
dush-a / BusinessInfo.cs
Created February 18, 2023 05:55
A class file for Business info model
namespace RazorPages.Core07.Identity.SiteData
{
public class BusinessInfo
{
public string? BusinessName { get; set; }
public string? Email { get; set; }
public string? Telephone { get; set; }
public string? DefaultUrl { get; set; }
public string? DisplayUrl { get; set; }
public string? StreetAddress { get; set; }
@dush-a
dush-a / _Layout7.cshtml
Created February 16, 2023 10:45
Core 7 Razor Web Apps Layout code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - RazorPages.Core07.Identity</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<link rel="stylesheet" href="~/RazorPages.Core07.Identity.styles.css" asp-append-version="true" />
</head>
@dush-a
dush-a / Layout.cshtml
Created August 15, 2020 12:22
Razor Layout.cshtml Page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
@RenderSection("MetaTags", required: false)
<title>@ViewData["Title"] - CSSGridNavLeftRight</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.1/css/all.css"
asp-fallback-href="~/lib/font-awesome/css/all.css"
integrity="sha384-wxqG4glGB3nlqX0bi23nmgwCSjWIW13BdLUEYC4VIMehfbcro/ATkyDsF/AbIOVe"