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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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" |