Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com
Last updated: Mar 28, 2022

ASP.NET

ASP.NET is an open-source web framework for building web apps and services with .NET and C# hence, is a cross-platform framework. .NET is a platform that contains tools, programming languages, and libraries for building applications. You can develop web apps, develop REST APIs and create microservices. It provides features like high performance, container support, asynchronous programming, web sockets which enables a rich development experience. Here we will learn about asp.net web forms, asp.net web pages, asp.net MVC architecture, asp.net core.
Introduction to ASP.Net MEDIUM
ASP.NET is a framework for web applications and this framework is used to build dynamic and interactive web applications.
ASP.NET Tutorial EASY
This blog will teach you about ASP.net, its feature, and why we should use ASP.Net. Furthermore, we will see different development styles of ASP.Net for creating a web application.
ASP.NET Life Cycle
In this article, we will learn about ASP.NET Life Cycle and see its role in application development.
ASP.NET First App
ASP.NET provides developers with an authentication system that includes a database, libraries, templates for managing logins, external authentication to Google, Facebook, etc.

Web Forms

ASP.NET is a server-side technology for displaying and handling web pages, Web forms are one important feature of any website. WebForms in ASP.NET are pages that your users request through their browser. HTML, client-script, server controls, and server code can all be used to create these pages. Here we will be learning components and handling web forms, cookies, sessions, etc.
ASP.NET Web Forms Introduction
ASP.NET Web Forms are pages your users request using their browser.
ASP.NET Web Forms Project
ASP.NET Web Forms are pages your users request using their browser.
ASP.NET Server Controls
The built-in ASP.NET server controls in the ASP.NET page framework are designed to provide a more organized programming approach for the Web.
ASP.NET Web Forms Label
This article is about the theoretical and practical implementations of Label in ASP.NET Web Forms.
ASP.NET WebForms Button
This article introduces you to WebForms Button in ASP.NET with a detailed description and code.
ASP.NET WebForms Textbox
This blog discusses the Textbox WebForm in ASP.net with examples.
Author Parth
0 upvotes
Web Forms Radio Button
This blog will learn about the web forms of radio buttons, their properties, and examples. We will go through different radio buttons, labels, Custom/Fancy Radio Button.
ASP.NET Web Forms Calendar
In this blog, we will learn how to create a Calendar using ASP.NET.
Web Forms LinkButton
In this blog, we will learn about LinkButton class, its example, properties, and methods.
ASP.NET FileUpload
ASP.NET FileUpload is an input controller used to upload files to the server.
ASP.NET Upload Multiple Files
This blog discusses the theoretical and practical implementation of Multiple Fileupload in ASP.NET.
ASP.NET Downloading a File
This article introduces ASP.NET and how to download a file using ASP.NET with a detailed description and code.
ASP.NET Cookies
This article discusses ASP.NET Cookies and their implementation. We talk about why it is good to learn ASP.NET Cookies and how it makes the life of a developer easier.
ASP.NET Session MEDIUM
This article discusses ASP.NET Session and its implementation. We talk about why it is good to learn ASP.NET Session and how it makes the life of a developer easier.
ASP.NET DropDownList
This blog will cover the concept of ASP.NET DropDownList and DropDown List UI class. Furthermore, we will learn about its constructors, methods, and properties.
ASP.NET DataList
This article discusses ASP.NET DataList and its implementation. We talk about why it is good to learn ASP.NET DataList and how it makes the life of a developer easier.
ASP.NET DataGrid
In this article, we will learn about ASP.NET DataGrid and how it helps display a scrollable table with data.
WebForms Event Handling in ASP.NET
This blog covers the concept of webforms event handling in ASP.NET, which can create any server control event.
WebForms Authentication
This article introduces you to Web Form Authentication and how to create secure web forms implementation with user sign up with a detailed description and code.
Web Forms Model Binding
In this article, we will discuss the way to bind form data to functional logic. We will discuss web forms and learn to form data from the HTML elements bonded to Objects.
HTML Server Controls
This article discusses HTML Server Controls and their implementation. We talk about why it is good to learn HTML Server Controls and how it makes the life of a developer easier.

ASP.NET MVC

ASP.NET Model-View-Controller framework is a lightweight, highly testable presentation framework that is integrated with all existing ASP.NET features, such as authentication, master pages, etc. It follows MVC Pattern to create web applications and easy controls over UI part HTML, CSS and javascript frameworks.
ASP.NET MVC Introduction and Features
This blog will discuss ASP.NET MVC (Model View Controller) along with its various features to clearly understand the concept.
ASP.NET MVC Architecture and Lifecycle MEDIUM
This article discusses ASP.NET MVC Architecture and Lifecycle and their implementation. We talk about why it is good to learn ASP.NET MVC Architecture and Lifecycle and how it makes the life of a developer easier.
ASP.NET MVC Project Structure
In this blog, you will get to know the ASP.NET MVC project folder structure like content, Controllers, Models, Scripts, Views, etc
ASP.NET MVC Actions
In this article, you will learn about the controller class's action method and its different types with implementation.
ASP.NET MVC Selectors
In this article, we will look at Action Selectors in ASP.NET MVC with the help of code examples.
ASP.NET MVC Action Filter
This article will help you understand action filters in Asp.Net MVC and their different types with examples.
ASP.NET MODEL
This blog will discuss ASP.NET MVC along with step by step explanation of creating a model class.
ASP.NET MVC Model Binding
In this blog, we will learn about Model Binding and its use with an example.
ASP.NET MVC View
This blog discusses MVC View in ASP.NET.
ASP.NET MVC Integrate Model, View & Controller
This article discusses the MVC Integrate model, View, and Controller in ASP.NET in detail.
ASP.NET Layout View
In this blog, we will learn about Layout in ASP.NET, understanding its creation with examples with different sections.
ASP.NET MVC Validations
In this blog, we will discuss ASP.Net MVC controllers, their syntax, and some examples related to the MVC controller.
ASP.NET MVC Validations
In this blog, we will learn about the DRY principle, base validation class, common terms used invalidation, and MVC validation with an example.
ASP.NET MVC AUTHENTICATION
In this blog, we will learn how to create a Secure web application using MVC Authentication in ASP.NET.
ASP.NET MVC BootStrap
In this blog, we will learn about what bootstrap is in MVC structure along with the basics of MVC structure, enabling bootstrap in the file, creating the project, and all this with examples.
ASP.NET MVC Scaffolding
In this blog, we will discuss Scaffolding in ASP.NET, steps to create a project in Microsoft visual studio, and how to execute it all with examples.
ASP.NET MVC ViewBag, ViewData, And TempData
In this blog, we will learn about ASP.NET MVC ViewBag, ViewData, and TempData data variables to store and pass values from controller to view.
ASP.NET Create Edit View
This blog discusses creating an edit view in ASP.NET with a practical example.
ASP.NET MVC Bundling Script and Styling
This blog discusses the ASP.NET MVC Bundling Script, Styling, and Minification.
Author Parth
0 upvotes

ASP.NET Razor

ASP.NET Razor Pages is a newer and simplified web application development model which removes the need for a file-based routing approach. Each Razor Pages file found under the Pages directory points to an endpoint. Here we will be learning about the features of razor pages and creating example projects in razor pages.
ASP.NET Razor Introduction and Features
This article discusses ASP.NET Razor Introduction and its features. We talk about why it is good to learn ASP.NET Razor and how it makes the life of a developer easier.
ASP.NET Razor Code Expressions MEDIUM
This blog discusses the theoretical and practical implementations of Razor Code expressions.
ASP.NET Razor Code Blocks
This article discusses ASP.NET Razor Code Blocks and their implementation. We talk about why it is good to learn ASP.NET Razor Code Blocks and how it makes the life of a developer easier.
ASP.NET Razor Control Structures
This article discusses ASP.NET Razor Control Structures and their implementation. We talk about why it is good to learn ASP.NET Razor Control Structures and how it makes the life of a developer easier.
ASP.NET Razor HTML Helpers
In this article, we will learn about HTML Helpers in ASP.NET and its uses.
ASP.NET Razor Partial View
This article discusses ASP.NET Razor Partial View and its implementation. We talk about why it is good to learn ASP.NET Razor Partial View and how it makes the life of a developer easier.