dots bg

.Net

Course Instructor Setwin Online

₹5900.00

dots bg

Course Overview

Course Description

Microsoft .NET Core is a completely new thing in the Microsoft web stack when it was introduced. So before going to .NET Core some introduction of the history of .NET web stack is necessary.

ASP.NET Web forms

ASP.NET Web forms were released with the first version of .NET in 2002. In early web development, web forms were the heart of ASP.NET. Web forms provide the User Interface UI of the application. In web forms developers have two options to design the UI. The first is to use tool box and design UI by dragging and dropping every control and setting the layout of the web page. The second is to write full HTML scripts in order to add controls like textbox, labels, buttons etc. In design view, web page written in HTML code looks similar to that which is done by drag and drop of controls. The logic of the page is in .cs file where C# or VB code is available. Later web forms are enhanced and their functionality become more and more better by use of bootstrap, javascript and other javascript libraries.

ASP.NET MVC

In 2009, Microsoft introduced a new framework for web development named ASP.NET MVC, which is based on Models, Views and Controllers patterns to keep a separation between business logic and presentation logic and allow complete control over HTML mark-up. For developers, it became easier to write code in ASP.NET MVC as compared to Web forms. It was so easy to write code as Models, handle the business logic in controllers and generate Views from controllers. Everything is controlled in ASP.NET MVC.

But ASP.NET MVC, although solving the problem of slow release cycle and removing HTML markup abstraction, still suffered from the dependency on .NET framework and System.Web which strictly made it coupled with IIS and windows.

ASP.NET Web API

Later a new web programming model was introduced by Microsoft. In this model, instead of processing the data server-side and sending fully rendered pages to the browser this new paradigm was introduced. It is also called Single Page Application (SPA). It used mostly in static web pages which fetches data with ajax from server and renders the UI directly on the client with javascript.

This library was even more modular than libraries. It was developed by Windows Communication Foundation (WCF) team instead of ASP.NET team so it doesn’t rely on System.Web and IIS. This made this library completely independent from ASP.NET and IIS.

What will you Learn?

After learning ADO .NET start ASP .NET. Learn what it is, why it is used, what are the controls, what are ASP tags, what are attributes for a control etc.

1. Learn Grid View control, events in Grid View, its properties.

2. Learn MultiView Control

3. Learn Template and Bound fields

4. Learn about client side and server-side validation

5. Learn about view state, session state variables

6. Cache management in asp .net

7. Exception handling

8. Global.asax file

9. User defined controls which include User controls and custom controls

10. Master pages.

11. Action filters

12. Dependency injection

13. jQuery ajax

14. Targeting to mobile

Prerequisites

Start to learn the front-end technologies like:

1. Html, CSS, JavaScript

And learn some of the most used Javascript frameworks as well. I would suggest you learn:

1. jQuery - to manipulate Html DOM

2. Angular /React- to build SPA applications

After that learn a back-end programming language (systems language):

 C#

Then at the end learn a language used to manipulate data in Database. I would suggest you learn:

SQL

Framework like:

Entity Framework (.Net framework to interact with data)

Schedule of Classes

Course Curriculum

2 Subjects

ASP.NET

33 Learning Materials

Introduction to ASP

About ASP

External Link

Development Models of ASP

External Link

Grid view in ASP

External Link

Introduction to ASP.NET

Overview of ASP.NET

External Link

Usage of ASP.NET

External Link

Is ASP.NET Platform Dependent or Independent

External Link

Why it is named as ASP.NET

External Link

ASP vs ASP.NET

External Link

ASP.NET vs ASP with MVC

External Link

What will you gain if you learn ASP.NET

External Link

History of ASP.NET

History of ASP.NET

External Link

Features of ASP.NET

Features of ASP.NET

External Link

Versions of ASP.NET

Versions of ASP.NET

External Link

ASP.NET Development Tools

Visual Studio as ASP.NET Development Tool

External Link

ASP.NET Development Models

External Link

ASP.NET Environment

Environment of ASP.NET

External Link

Compiling and Running ASP.NET Application

External Link

Introduction to Web Applications

Web Applications with Web Server

External Link

Role of Web servers About IIS, APACHE, CASSINI

External Link

Role of HTTP, TCP/IP, LAN, WAN & O/S in Web Development

External Link

Applications of ASP.NET

Introduction to Applications of ASP.NET

External Link

Web Applications

External Link

Desktop Applications

External Link

Mobile Applications

External Link

Importance of Scripting

Why Scripting & its Importance

External Link

Architecture of ASP.NET

Architecture of ASP.NET

External Link

Objects of ASP.NET

External Link

Request and Response Objects

External Link

Drawbacks of Current Trend

External Link

ASP.NET Frame Work

Introduction to ASP.NET Framework

External Link

Multiple Language Interaction & Support

External Link

Moving from Project to Assemblies

External Link

Security Services and Environment

External Link

C#.NET

130 Learning Materials

Introduction to Programming Languages

Programming Languages Paradigm

External Link

Imperative Paradigm

External Link

Declarative Paradigm

External Link

Structured Programming

External Link

Procedural Programming

External Link

Object Oriented Programming

External Link

Functional Programming

External Link

History of Programming Language

History of Programming Language

External Link

Classification of Programming Languages

Low Level Programming Language

External Link

Middle Level Programming Language

External Link

High Level Programming Language

External Link

High Level Programming Languages

FORTRAN

External Link

ALGOL

External Link

COBOL

External Link

BCPL

External Link

PASCAL

External Link

B Language

External Link

C Language

External Link

C++

External Link

Java

External Link

C#

External Link

Introduction to C#

Why it is Named as C#

External Link

Is C# Platform Dependent or Independent

External Link

Features of C#

Introduction to Features of C#

External Link

Simple

External Link

Modern Programming Language

External Link

Object Oriented

External Link

Type Safe

External Link

Interoperability

External Link

Scalable and Updatable

External Link

Component Oriented

External Link

Structured Programming Language

External Link

Rich Library

External Link

Fast Speed

External Link

Versions of C#

Versions of C#

External Link

Importance of C#

Advantages of C#

External Link

What will you gain if you learn C#?

External Link

History of C#

Beginning of Modern Age Programming

External Link

Creation of OOPS and C++

External Link

Internet and Java Emerge

External Link

Creation of C#

External Link

Evolution of C#

External Link

How C# Relates to the .NET Framework

External Link

.NET Framework and its Components

External Link

Your First Program

First Program using Command Line Compiler

External Link

First Program Using Visual Studio IDE

External Link

Handling Syntax Errors

External Link

Debugging

External Link

Basic Syntax

Semicolons

External Link

Keywords

External Link

Identifiers

External Link

Data Types

Introduction to Data Types

External Link

Different Data Types in C#

External Link

Value Data Type

External Link

Reference Data Type

External Link

Pointer Data Type

External Link

Why Data Types are Important

External Link

Literals & Variables

Literals

External Link

Variables

External Link

Initializing Variables

External Link

Scope of Variables

External Link

Operators

Introduction to Operators

External Link

Arithmetic Operator

External Link

Increment & Decrement Operator

External Link

Bitwise Operator

External Link

Ternary Operator

External Link

Spacing & Parenthesis

External Link

Operator Precedence

External Link

Conditional Statements

If Statement

External Link

If-else Statement

External Link

If-else if Statement

External Link

Nested if-else Statement

External Link

Switch Statement

External Link

Nested Switch Statement

External Link

Jump Statements

goto Statement

External Link

break Statement

External Link

continue Statement

External Link

return Statement

External Link

Iteration Statements

While Statement

External Link

Do-while Statement

External Link

For Statement

External Link

For each Statement

External Link

Some Variations on For Loop

External Link

Overview of OOPS

Introduction to OOPS

External Link

Class

External Link

Object

External Link

Abstraction

External Link

Encapsulation

External Link

Inheritance

External Link

Polymorphism

External Link

Classes

Introduction to Class

External Link

Rules for Declaring Class Name

External Link

Access Specifiers or Modifiers

External Link

Generalized program for Access Specifier or Modifier

External Link

Internal & Protected

External Link

Generalized program for a Class

External Link

Objects

Introduction to Object

External Link

Creating an Object

External Link

Releasing an Object

External Link

Declaring & Instantiating Object

External Link

Access to fields of an Object

External Link

Methods

Introduction to method

External Link

Method Deceleration

External Link

Return Type Method

External Link

Non - Return Type Method

External Link

Types of Methods

Pure Virtual Method

External Link

Virtual Method

External Link

Abstract Method

External Link

Partial Method

External Link

Extension Method

External Link

Instance Method

External Link

Static Method

External Link

Passing Parameter to a Method

Introduction to Passing Parameter to a Method

External Link

Value as a Parameter

External Link

Reference as a Parameter

External Link

Output as a Parameter

External Link

Method Overloading

Introduction to Method Overloading

External Link

By Changing the Number of Parameters

External Link

By Changing the Data Types of the Parameters

External Link

By Changing the Order of the Parameters

External Link

Constructors

Introduction to Constructor

External Link

Rules for Declaring a Constructor

External Link

Types of Constructor

Default Constructor

External Link

Parametarized Constructor

External Link

Copy Constructor

External Link

Private Constructor

External Link

Static Constructor

External Link

Destructors

Introduction to Destructor

External Link

Rules for Declaring a Destructor

External Link

Garbage Collector

External Link

Course Instructor

tutor image

Setwin Online

107 Courses   •   2628 Students