Posts

Showing posts with the label Video

Using foreach loop in Razor View Engine

Image
In this quick video we are going to take a look at foreach loop in Razor View Engine. 

Model, View and Controller Communications

Image
In this video tutorial you will learn how Model, View and Controller communicates each other.

URL Routing in MVC 3

Image
This Video has 2 parts, when Part-1 will end it will automatically resume Part-2.

Quickest Way to add Namespaces in Applicationspace in your Application

Image

Becoming a Web Pro Black Belt - Mastering IIS and Other Essential Web Technologies by Scott Forsyth

There is a shortage of end to end practical training for the web pro available today. This 52-week series targeted at the current or up-and-coming web pro is meant to address this need. Scott Forsyth releases a video each week on a different aspect of this arena. Scott has a unique background that makes this such a valuable series. He has over a decade of specific hands on expertise in hosting both highly available and highly scalable web farms, and working through the intrinsic details of shared hosting. Over the years Scott worked has worked tirelessly day and night, often burning the midnight oil while troubleshooting difficult situations, or architecting the best end-to-end configuration for upcoming projects. His passion comes through in each video, while his years of real world expertise bring experience that will strengthen newbies and professionals alike. Find Videos Here

Adding Website in IIS and Using Friendly Name to Open the Website

Image
In this video you are going to learn how to add website in IIS and even how to use friendly name to open that website.

Web Services

Image
Introduction   Download As name "Web Services" suggests, it is a method of communication between two electronic devices over the web (internet). A web service is not a website that a human reads. It is not anything with which an end user would directly interact. A web service is a standard platform for building interoperable distributed applications. It allows you as a developer, to interact with other information providers without worrying about what they are running either at the backend or even their front-end. Points to remember * WS are small units of code. * WS are small unit of codes that is designed to handle limited set of tasks. For example, online payment system communicates using Web Services. * WS are independent of OS and Programming Languages. * WS are not limited to OS type or Programming Languages as it communicates using open protocol systems. * WS are designed to handle

Difference between IEnumerable and IEnumerator - By Shivprasad Koirala

Image
Two very important concepts IEnumerable and IEnumerator, these concepts been always a confusing for many developers. Here comes a videos by Mr. Shivprasad Koirala (Trainer at Questpond ), watch this if you want to clear your confusions.

Extension Methods in C#

Image
Introduction Extension methods are a convenient way to add methods to classes that you don’t own and so can’t modify directly. Look at the program given below: using System; using System.Collections.Generic;   namespace ConsoleApplication1 {     class Program     {         static void Main( string [] args)         {             //create the object of the class             Person p = new Person () { Name = "Abhimanyu" , Age = 22 };               //see the result             Console .WriteLine(p.Name + ", " + p.Age);             Console .ReadKey()

Auto-Implemented Properties for trivial Get (getter) and Set (setter) in C#

Image
In the example given below, you will look at a very good example on auto-implemented properties for trivial get (getter) and set (setter). There is a shortcut way to create property with its definition just by pressing keyboard keys. Find here Tips: shortcut way to create properties in C# using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Automatically_Implemented_Properties {     class Program     {         static void Main( string [] args)         {             // Intialize a new object.             Customer cust1 = new Customer (500.50, "Abhimanyu" , 12);             //Modify a property       

Tips: Commenting and Uncommenting codes

Image
In this video tutorial you are going to learn how to comment and uncomment your codes in a quick way.

Video Tutorial on Web Configuration Transformation for Database ConnectionString in ASP.NET

Image
I am feeling very glad to write this post, I can't hide my excitement. I've created my very first Video Tutorial on "Using-Web-Configuration-Transformation-for-Database-ConnectionString-in-ASP-NET'. I know, I'm not soo good in English; forgive me if any mistake happened.  Well, this is my very first take that needs lots of improvements and I promise I will not let you unhappy in future. Please post you feedbacks so that I can improve the quality.

Popular posts from this blog

Migrating database from ASP.NET Identity to ASP.NET Core Identity

Customize User's Profile in ASP.NET Identity System

Lambda two tables and three tables inner join code samples