DCSIMG
May 2011 - Posts - Life Michael

May 2011 - Posts

ASP.NET Data Binding

I have recently completed to cover the ASP.NET Data Binding topic in my ASP.NET course. You can find its community version available for free personal usage at www.abelski.com. The following video clips were prepared in order to explain the basics of this topics. Both the source code shown in these clips and the slides can be found at www.abelski.com.

Posted by life | with no comments

The Dns Class in C#

The Dns class (in C#) encapsulates the Domain Name Service server, that is capable of converting between a raw IP address (e.g. 32.34.22.132) to its human friendly domain name (e.g. abelski.com). The following video clip shows and explains that.

More video clips can be found at www.abelski.com and at www.CSharpBook.co.il.

Posted by life | with no comments
תגים:,

Static Class in C#

The C# programming language allows us to define a static class. We define a class as a static one when there is no need in instantiating it and we want to ensure that no one will try to do so. The following video clip (hebrew) explains how to define a static class.

More video clips (hebrew) that explain fundamental topics in C# can be found at www.CShapBook.co.il.

Posted by life | with no comments
תגים:,

The Factory Design Pattern in C#

I have recently started to create video clips that explain the classic design patterns (GOF) and their implementation in C#. You can find the video clips and the source code they use available for free at www.CSharpBook.co.il. The video clips were prepared in Hebrew. The following video clip explains the factory design pattern and its implementation in C#.

Posted by life | with no comments

ASP.NET Forms Authentication

The Forms Authentication is a token based system that takes care of users authentication through a log-in form. When a user requests an ASP.NET web page that is not available for anonymoujs users the ASP.NET runtime verifies that the form authentication tocken is available.

You can find more explanations in my ASP.NET course. You can find its community free version available for free personal and academic usage at www.abelski.com

Posted by life | with no comments

ASP.NET 4.0 Chart Control

The Visual Studio 2010 provides us with a Chart control we can use for creating more than 30 different types of charts. We can easily add is to our web page. The Chart control is available within the toolbox data category.

The data can be easily added into the *.aspx document. The following video clip shows that possibility.

We can alternatively initialize our chart through the code. The natural place for placing such code will be the Page_Load method. The following video clip shows that possibility.

The possibility to bind the Chart control with a data source exists as well. More possibilities are covered in my ASP.NET course. You can find the community version available for free personal and academic usage at www.abelski.com.

Posted by life | 1 comment(s)