List/Grid

TUTORIALS Subscribe to TUTORIALS

ASP.NET MVC Controller Overview

ASP.NET MVC Controller Overview

In this video, Stephen Walther introduces you to ASP.NET MVC controllers and controller actions. You learn how to return different types of action results.
CLICK HERE
ASP.NET MVC Controller … Read more »

How Do I: Return JSON Formatted Data for an AJAX Call in an ASP.NET MVC Web Application?

How Do I: Return JSON Formatted Data for an AJAX Call in an ASP.NET MVC Web Application?

In this video Chris Pels shows how to use the JsonResult and Json classes to return instances of classes as JSON formatted data. First, a sample MVC web … Read more »

Creating Custom HTML Helpers

Creating Custom HTML Helpers

Create new HTML Helpers to make it easier to generate view content. Stephen Walther demonstrates two simple methods of creating new HTML Helpers.
CLICK HERE
Creating Custom HTML Helpers,html helpers … Read more »

Creating Unit Tests for ASP.NET MVC Applications

Creating Unit Tests for ASP.NET MVC Applications

Learn how to create unit tests for controller actions. In this tutorial, Stephen Walther demonstrates how to test whether a controller action returns a particular view, returns a … Read more »

Preventing JavaScript Injection Attacks

Preventing JavaScript Injection Attacks

Prevent JavaScript Injection Attacks and Cross-Site Scripting Attacks from happening to you. In this tutorial, Stephen Walther explains how you can easily defeat these types of attacks by … Read more »

Difference Between Silverlight and WPF(Windows Presentation Foundation)

Difference Between Silverlight and WPF(Windows Presentation Foundation)

Some core differences between Silverlight and WPF (Windows Presentation Foundation)
Silverlight and Windows Presentation Foundation (WPF) are 2 different products from Microsoft, but has lot of overlap. Silverlight is a sub … Read more »

Difference between Silverlight 1 and Silverlight 2

Difference between Silverlight 1 and Silverlight 2

Silverlight 1 is purely AJAX and Javascript based. All the code has to be written in Javascript and XAML.
Silverlight 2 supports managed code. When Silverlight 2 runtime is installed, it … Read more »

What is Silverlight ?

What is Silverlight ?

Silverlight is a web based technology, launched by Microsoft in April 2007. Silverlight is considered as a competitor to Adobes Flash.
Silverlight applications are delivered to browsers in a text-based markup … Read more »

Namespaces in C# (ASP.NET)

Namespaces in C# (ASP.NET)

A Namespace is a group of related classes. It is a good practice to group related classes into a namespace when you create a class library.
The main advantage of using … Read more »

Property in C# class

Property in C# class

How do you access member variables of any class from outside the class ? In most of the languages including C++ , you will make the member variables public so … Read more »

Classes and Object Model in .NET

Classes and Object Model in .NET

Classes and Object model in .NET
We will start with an introduction to what is object oriented programming, how to write simple classes, creating objects etc.
What is a ‘class’ ?
In … Read more »

Data Types in C#

Data Types in C#

Datatypes in C# and .NET
DataTypes are the basic building block of any language. Microsoft has tried to standardise the datatypes in .NET framework by introducing a limited, fixed set of … Read more »

C# Language Syntax

C# Language Syntax

This article will show you the basic statements in C# language and language syntax.
Declaring Variables

The following sample shows different ways you can declare a variable:
int a;
int salary, incomeTax, sum;
int … Read more »