Free Windows - dotNET Tutorials

Free Windows - dotNET Tutorials

Feb
11

Build a Simple Web Service

Posted by admin

In this article we’re going to develop a very simple web service using ASP.NET available in Visual Studio.NET Beta 1 which exposes the following functions: Read the rest of this entry »

Read the rest of this entry »

Feb
10

ADO.NET, Part 3

Posted by admin

This is the third installment from the Programming Visual Basic .NET chapter on ADO.NET, focusing on the relations between DataTables in a DataSet, and the DataSets XML capabilities.Relations Between DataTables in a DataSetThe DataSet class provides a mechanism for specifying relations between tables in a DataSet. The DataSet class’s Relations property contains a RelationsCollection object, which maintains a collection of DataRelation objects. Each DataRelation object represents a parent/child r Read the rest of this entry »

Localization is a process by which you allow people of different cultures, languages and nationalities access your Web site. Although still a difficult process, all things considered, it is gradually becoming easier. Both the Java platform and the .NET platform have some nice features to aid localization. For instance, all strings, dates, and numbers are internally locale aware and when printed or validated will honor the localization setting. Read the rest of this entry »

Just about every book or article I’ve read about Atlas has given me a headache. They seem to have two messages in common: (1) all my server-side ASP.NET applications are now obsolete, and (2) the only way to fix them is to add really complicated JavaScript. Woe is me. Read the rest of this entry »

Feb
10

Using the Cryptography APIs in .NET

Posted by admin

The .NET framework contains a number of cryptography services that allow you to incorporate security services into your .NET applications. These libraries are located under the System.Security.Cryptography namespace and provide various functions such as encryption and decryption of data, as well as other operations such as hashing and random-number generation. In this article, I will show you how to use some of the common security APIs to make your .NET applications more secure. Read the rest of this entry »

Feb
10

ADO.NET, Part 5

Posted by admin

This is the fifth installment from the Programming Visual Basic .NET chapter on ADO.NET, focusing on Typed DataSets, reading data into a DataReader, and executing stored procedures through a SqlCommand object.Typed DataSetsThere is nothing syntactically wrong with this line of code:Dim dt As System.Data.DataTable = ds.Tables("Custumers")However, "Custumers" is misspelled. If it were the name of a variable, property, or method, it would cause a compile-time error (assuming the Read the rest of this entry »

Feb
10

Create Project Item Wizards

Posted by admin

In a recent project, my team had to produce a platform that included a set of base classes that other developers could use to develop Windows forms in Visual Studio .NET 2003. As we worked on the base classes, it became clear that our developers would be able to crank out their forms a lot faster if we could also generate stubs and skeleton code for all of the methods they needed to override in their own classes. Read the rest of this entry »

Improving human-to-computer interaction through speech processing is just one area of computing tha
Read the rest of this entry »

One time in .NET that you need to know about satellite assemblies is when you are dealing with localization. For localizing text, one doesn’t hard code text on a page, but uses a key for that text. The text equivalent for the key is retrieved from a file called a resource file. A resource file is essentially a dictionary of associations between the keys and their textual values. You will have this resource file duplicated once for each language that you support. .NET will retri Read the rest of this entry »