{"id":58021,"date":"2021-11-18T21:01:51","date_gmt":"2021-11-18T13:01:51","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=58021"},"modified":"2021-11-21T17:38:06","modified_gmt":"2021-11-21T09:38:06","slug":"create-aspnet-for-beginners","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/","title":{"rendered":"How to Create an ASP.NET Site Quickly (A Beginner&#8217;s Guide)"},"content":{"rendered":"<p>ASP.NET is a part of .NET technology used to write powerful client\/server Internet applications. It allows you to create dynamic HTML pages. ASP.NET is the result of the combination of the older ASP technology (active server pages) and the .NET Framework.<\/p>\n<p>It contains many ready-made controls that you can use to quickly create interactive websites. You can also use services provided by other websites.<\/p>\n<p>Previously, ASP.NET technology was divided into two areas: <a target=\"_blank\" href=\"https:\/\/docs.microsoft.com\/en-us\/aspnet\/web-forms\/\" rel=\"noopener\">Web Forms<\/a> and <a target=\"_blank\" href=\"https:\/\/docs.microsoft.com\/en-us\/aspnet\/mvc\/overview\/older-versions-1\/overview\/understanding-models-views-and-controllers-cs\" rel=\"noopener\">Model-View-Controller (MVC)<\/a>. Now Microsoft developers have removed a lot of duplicate functionality, leaving a single <a target=\"_blank\" href=\"https:\/\/docs.microsoft.com\/en-us\/aspnet\/core\/tutorials\/first-mvc-app\/start-mvc?view=aspnetcore-6.0&tabs=visual-studio\" rel=\"noopener\">ASP.NET Core MVC programming model<\/a>.<\/p>\n<p>The paradigm for building MVC applications has three components: <em>Model<\/em>, <em>View<\/em>, and <em>Controller<\/em>.<\/p>\n<p>Let\u2019s take a closer look at them:<\/p>\n<ul>\n<li><strong>Model<\/strong> is a component of the application that is responsible for interacting with the data source (database, file system).<\/li>\n<li><strong>View<\/strong> \u2013 the component responsible for displaying the user interface.<\/li>\n<li><strong>Controller<\/strong> is a component that describes the application logic, in other words, the logic for processing HTTP requests to a web application. The controller interacts with model objects that affect the view.<\/li>\n<\/ul>\n<h2>ASP.NET Page Life Cycle<\/h2>\n<p>As part of this ASP.Net article, we will look at the sequence of stages of page processing:<\/p>\n<ol>\n<li>A <strong>page request occurs<\/strong> when a page is requested, the server checks to see if it is being requested the first time. If so, the page is created, the response is processed and sent to the user. If the page is not requested for the first time, the cache is checked. If the page exists in the cache, the saved response is sent to the user.<\/li>\n<li>Starting the page, at this stage, the <strong>Request and Response objects are created<\/strong>. The Request object is used to store information that was sent when the page was requested. The Response object is used to store information that is sent back to the user.<\/li>\n<li><strong>Page initialization.<\/strong> This is where all the controls on the web page are initialized.<\/li>\n<li><strong>Page load.<\/strong> The page is loaded with all defaults.<\/li>\n<li><strong>Validation.<\/strong> In some cases, validation can be specified for certain forms. For example, confirmation may be requested that a list item contains a specific set of values.<\/li>\n<li>If the condition is not met, an <strong>error should be displayed<\/strong> when loading the page.<\/li>\n<li><strong>Event reprocessing<\/strong> occurs if the page is loaded again. This happens in response to a previous event. If the user clicks on the submit button on the page, then the same page is displayed again. Then the repeated event handler is called.<\/li>\n<li>The rendering of the page occurs before the response is sent to the user. All information about the form is saved and the result is sent to the user in the form of a complete web page.<\/li>\n<li><strong>Unloading<\/strong>. After the page is submitted to the user, it is no longer necessary to store the web form objects in memory. Thus, the unloading process involves removing all unnecessary objects from memory.<\/li>\n<\/ol>\n<h2>The internal structure of the project<\/h2>\n<p>After creation, the project initially already has three default pages: <em>Default<\/em>, <em>About<\/em>, and <em>Contact<\/em>.<\/p>\n<p>Each page consists of three files:<\/p>\n<ul>\n<li><code>Page.aspx<\/code> \u2013 Contains the HTML markup of a specific page;<\/li>\n<li><code>Page.aspx.cs<\/code> \u2013 Responsible for the logic of a specific page;<\/li>\n<li><code>Page.aspx.designer.cs<\/code> \u2013 The bridge between Page.aspx and Page.aspx.cs.<\/li>\n<\/ul>\n<p>The code of the <code>About.aspx<\/code> file:<\/p>\n<pre>\r\n&lt;%@ Page Title=\"About\" Language=\"C#\" MasterPageFile=\"~\/Site.Master\" AutoEventWireup=\"true\" \r\nCodeBehind=\"About.aspx.cs\" Inherits=\"TutWebApplication.About\" %&gt;\r\n&lt;asp:Content ID=\"BodyContent\" ContentPlaceHolderID=\"MainContent\" runat=\"server\"&gt;\r\n&lt;h2&gt;&lt;%: Title %&gt;.&lt;\/h2&gt;\r\n&lt;h3&gt;Your application description page.&lt;\/h3&gt;\r\n&lt;p&gt;Use this area to provide additional information.&lt;\/p&gt;\r\n&lt;\/asp:Content&gt;\r\n<\/pre>\n<p><code>About.aspx<\/code> contains only a fragment of the finished page. The main part is located on the <code>Site.Master<\/code> or <code>Site.Mobile.Master<\/code> file.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/create-aspnet-for-beginners\/startpage.jpg\" alt=\"aspnet start page\" width=\"956\" height=\"556\"><\/figure>\n<p>To test and run the project, press IIS Express or the traditional <span class=\"key\">F5<\/span> key.<\/p>\n<p>After that, all files will be compiled and the site will open at <em>http:\/\/localhost:5000<\/em> in the default browser (the port number may differ).<\/p>\n<h2>How to create a page in ASP.NET Web Forms<\/h2>\n<p>Initially, decide in which directory you will create the pages. All files located in one directory are considered a single project. Start the development environment of your choice.<\/p>\n<p>Select the <strong>File-New-Website<\/strong> menu item. A dialog box will appear. Assign a project name in it and select the C# programming language.<\/p>\n<p>By default, the project is created on the file system. Optionally, you can create it on an HTTP or FTP server. You can also always copy a project from the file system to the server by clicking just the button \"<strong>Solution Explorer\"<\/strong>.<\/p>\n<p>To create other pages, right click on the project name and select Add -&gt; Web Form from the context menu (you can take a different name for the web form, in this case a new form called \u201cNews\u201d):<\/p>\n<p>A page with the following code will be created:<\/p>\n<pre>\r\n&lt;%@ Page Language=\"C#\" AutoEventWireup=\"true\" CodeBehind=\"News.aspx.cs\" Inherits=\"WebFormsApp1.News\" %&gt;\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html xmlns=\"https:\/\/www.w3.org\/1999\/xhtml\"&gt;\r\n\t&lt;head runat=\"server\"&gt;\r\n\t\t&lt;title&gt;News&lt;\/title&gt; \/\/ Add the title of the page\r\n\t&lt;\/head&gt;\r\n\t&lt;body&gt;\r\n\t\t&lt;form id=\"news\" runat=\"server\"&gt; \r\n\t\t\t&lt;div&gt;\r\n\t\t\t\tSome information\r\n\t\t\t&lt;\/div&gt;\r\n\t\t&lt;\/form&gt;\r\n\t&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<p>Let\u2019s take a look at this page. <code>&lt;%@ Page Language = \"C #\"%&gt;<\/code>. The <code>&lt;%<\/code> tag is always intended to interpret ASP code. The Page directive is always present on the aspx page.<\/p>\n<p>Its <code>Language<\/code> attribute is an indication that the scripts for this page will use the C # programming language. <code>CodeFile<\/code> is the name of the code-behind file. <code>Inherits<\/code> is a class defined in this file from which the page class is inherited.<\/p>\n<p>This page does not have an <code>&lt;asp:Content&gt;<\/code> tag, so the template from the <code>Site.Master<\/code> file will not be displayed. To change this, you can copy the code from <code>About.aspx<\/code>.<\/p>\n<h3>How to insert HTML code into a page<\/h3>\n<p>To pass a string along with a tag to the HTML code, you need to use not the usual <code>string<\/code> type, but <code>HtmlString<\/code>:<\/p>\n<pre>\r\nHtmlString PageContent = new HtmlString(\"&lt;p&gt;Something!&lt;\/p&gt;\");\r\n<\/pre>\n<h3>How to add a link to the menu<\/h3>\n<p>The menu is located in <code>Site.Master<\/code>:<\/p>\n<pre>\r\n&lt;ul class=\"nav navbar-nav\"&gt;\r\n\t&lt;li&gt;&lt;a runat=\"server\" href=\"~\/\"&gt;Home&lt;\/a&gt;&lt;\/li&gt;\r\n\t&lt;li&gt;&lt;a runat=\"server\" href=\"~\/About\"&gt;About&lt;\/a&gt;&lt;\/li&gt;\r\n\t&lt;li&gt;&lt;a runat=\"server\" href=\"~\/Contact\"&gt;Contact&lt;\/a&gt;&lt;\/li&gt;\r\n\t&lt;li&gt;&lt;a runat=\"server\" href=\"~\/News\"&gt;News&lt;\/a&gt;&lt;\/li&gt;\r\n\t\/\/ adding link to menu\r\n&lt;\/ul&gt;\r\n<\/pre>\n<h2>Conclusion<\/h2>\n<p>In this article, we have covered: creating an ASP.NET site, creating a new page, adding a link to the page in the menu, etc. To find out more information about ASP.NET, you can look at their <a target=\"_blank\" href=\"https:\/\/dotnet.microsoft.com\/learn\/aspnet\" rel=\"noopener\">official documentation.<\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>ASP.NET is a part of .NET technology used to write powerful client\/server Internet applications. It allows you to create dynamic HTML pages. ASP.NET is the result of the combination of the older ASP technology (active server pages) and the .NET Framework. It contains many ready-made controls that you can use to quickly create interactive websites.&hellip;<\/p>\n","protected":false},"author":387,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3400],"tags":[],"topic":[],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Create an ASP.NET Site Quickly (A Beginner&#039;s Guide) - Hongkiat<\/title>\n<meta name=\"description\" content=\"ASP.NET is a part of .NET technology used to write powerful client\/server Internet applications. It allows you to create dynamic HTML pages. ASP.NET is\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create an ASP.NET Site Quickly (A Beginner&#039;s Guide)\" \/>\n<meta property=\"og:description\" content=\"ASP.NET is a part of .NET technology used to write powerful client\/server Internet applications. It allows you to create dynamic HTML pages. ASP.NET is\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-18T13:01:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-21T09:38:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/create-aspnet-for-beginners\/startpage.jpg\" \/>\n<meta name=\"author\" content=\"Nikita\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nikita\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/\"},\"author\":{\"name\":\"Nikita\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/84c1af9448851225e4e9f9e466a520fb\"},\"headline\":\"How to Create an ASP.NET Site Quickly (A Beginner&#8217;s Guide)\",\"datePublished\":\"2021-11-18T13:01:51+00:00\",\"dateModified\":\"2021-11-21T09:38:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/\"},\"wordCount\":944,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/create-aspnet-for-beginners\\\/startpage.jpg\",\"articleSection\":[\"Hosting\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/\",\"name\":\"How to Create an ASP.NET Site Quickly (A Beginner's Guide) - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/create-aspnet-for-beginners\\\/startpage.jpg\",\"datePublished\":\"2021-11-18T13:01:51+00:00\",\"dateModified\":\"2021-11-21T09:38:06+00:00\",\"description\":\"ASP.NET is a part of .NET technology used to write powerful client\\\/server Internet applications. It allows you to create dynamic HTML pages. ASP.NET is\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/create-aspnet-for-beginners\\\/startpage.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/create-aspnet-for-beginners\\\/startpage.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/create-aspnet-for-beginners\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create an ASP.NET Site Quickly (A Beginner&#8217;s Guide)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/84c1af9448851225e4e9f9e466a520fb\",\"name\":\"Nikita\",\"description\":\"Nikita is an enthusiastic writer who is fond of IT programming and technology. In his free time from writing, he reads books and, most likely, drinks coffee at this time. But he also does not forget about performing physical exercises, which give him a massive boost of energy and pleasure.\",\"sameAs\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/nikita\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Create an ASP.NET Site Quickly (A Beginner's Guide) - Hongkiat","description":"ASP.NET is a part of .NET technology used to write powerful client\/server Internet applications. It allows you to create dynamic HTML pages. ASP.NET is","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/","og_locale":"en_US","og_type":"article","og_title":"How to Create an ASP.NET Site Quickly (A Beginner's Guide)","og_description":"ASP.NET is a part of .NET technology used to write powerful client\/server Internet applications. It allows you to create dynamic HTML pages. ASP.NET is","og_url":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2021-11-18T13:01:51+00:00","article_modified_time":"2021-11-21T09:38:06+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/create-aspnet-for-beginners\/startpage.jpg","type":"","width":"","height":""}],"author":"Nikita","twitter_card":"summary_large_image","twitter_creator":"@hongkiat","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Nikita","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/"},"author":{"name":"Nikita","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/84c1af9448851225e4e9f9e466a520fb"},"headline":"How to Create an ASP.NET Site Quickly (A Beginner&#8217;s Guide)","datePublished":"2021-11-18T13:01:51+00:00","dateModified":"2021-11-21T09:38:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/"},"wordCount":944,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/create-aspnet-for-beginners\/startpage.jpg","articleSection":["Hosting"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/","url":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/","name":"How to Create an ASP.NET Site Quickly (A Beginner's Guide) - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/create-aspnet-for-beginners\/startpage.jpg","datePublished":"2021-11-18T13:01:51+00:00","dateModified":"2021-11-21T09:38:06+00:00","description":"ASP.NET is a part of .NET technology used to write powerful client\/server Internet applications. It allows you to create dynamic HTML pages. ASP.NET is","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/create-aspnet-for-beginners\/startpage.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/create-aspnet-for-beginners\/startpage.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/create-aspnet-for-beginners\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Create an ASP.NET Site Quickly (A Beginner&#8217;s Guide)"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/84c1af9448851225e4e9f9e466a520fb","name":"Nikita","description":"Nikita is an enthusiastic writer who is fond of IT programming and technology. In his free time from writing, he reads books and, most likely, drinks coffee at this time. But he also does not forget about performing physical exercises, which give him a massive boost of energy and pleasure.","sameAs":["https:\/\/www.hongkiat.com\/blog\/"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/nikita\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-f5P","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/58021","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/387"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=58021"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/58021\/revisions"}],"predecessor-version":[{"id":58037,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/58021\/revisions\/58037"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=58021"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=58021"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=58021"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=58021"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}