German Wear Discount Shop - Click Here Write for Dotnet-friends and earn for your each submission [Dot]Net-Friends
Skip Navigation Links
Home
Latest
Fast Code
Articles
Tutorials
Online Resources
Forums
Login   | Hi, Guest



DotNetBips Latest Articles

Using the Wizard control of ASP.NET

Some times the data to be accepted from the user is too much and splitting the entire form into multiple logical sections is desirable. In classic ASP or even ASP.NET 1.x developers used to create multiple web forms each containing a part of the total information thus creating a wizard. However, this approach was often proved to be complex and time consuming. ASP.NET provides Wizard server control that allows hassle free development of such web forms. In this article we are going to see how to use this control in a typical situation of user registration. [Date(24/08/2008)]

Using Site Maps to provide web site navigation

If you anytime traveled to unknown areas you know the importance of maps. They help you to travel easily making your journey pleasurable. The same holds true for web sites. The visitors coming to your web sites should be presented with simple yet flexible navigation structure so that they can travel to various parts of your web site easily. ASP.NET provides a feature called SiteMap that help you achieve this goal. In this article we will explore what site maps are and how to develop web site navigation structures making use of them. [Date(17/08/2008)]

Using Extension Methods

How often do you want to modify existing classes to have extra methods? Quite often. Right? When you have source code of the classes under consideration at your hand then things are easy. You probably just add the extra methods to those classes. What if you don't have source code? Well. In such cases one approach is to inherit the existing classes and add extra methods to the child classes. However, this way may not be always correct and possible in terms of your application design and OO principles. Luckily, C# offers a quick way to extend your class functionality through a feature known as Extension Methods. Extension methods allow you to extend existing types without inheriting them. This article is going to throw some light on this handy feature. [Date(04/08/2008)]

Working with Binary Large Objects (BLOBs) Using SQL Server and ADO.NET

Sometimes, your data is not limited to strings and numbers. You need to store a large amount of data in a SQL server table. Documents, raw files, XML documents and photos are some examples. SQL sever provides special data types for such large volumes of data. In this article, I will discuss how to read and write Binary Large Objects (BLOBs) using SQL Server 2005 and ADO.NET. [Date(04/08/2008)]

Using LINQ in ASP.NET (Part 4)

In the Part 1 and Part 2 of this series we discussed how to use LINQ to SQL features to query and manipulate data. Part 3 introduced you with the inbuilt LINQ to SQL class designer. The LINQ to SQL class designer not only allows you to design classes visually but also saves reasonable amount of time otherwise needed to write equivalent code manually. Another such handy feature available to ASP.NET developers is LINQ Data Source Control. In this article I will explore this control with examples. [Date(28/07/2008)]

Tip: Fetching Random Rows From SQL Server

Recently I needed to fetch random rows from a SQL server table. If you have an integer column then using RAND() function goes well. However in my case there was no number column. [Date(23/07/2008)]

Using LINQ in ASP.NET (Part 3)

In the Part 1 and Part 2 of this series we discussed how to use LINQ to SQL features to query and manipulate data. We also learnt to call stored procedures via LINQ to SQL. In the previous examples our approach was manual in that we ourselves created the custom data context and entity classes. Visual Studio comes with an inbuilt designer to perform the same task. This article will teach you how to use the designer and consume the created classes in your application. [Date(21/07/2008)]

Using LINQ in ASP.NET (Part 2)

In the Part 1 of this series I discussed the basic operations of LINQ to SQL. By default when you use LINQ to SQL queries as shown earlier, they internally use SQL statements i.e. INSERT, UPDATE, DELETE and SELECT. In many real world applications you use stored procedures. Luckily, LINQ to SQL has a way to call stored procedures from your application. It involves bit of a work as compared to almost automated way discussed earlier. In this article I will explain how stored procedures can be consumed using LINQ to SQL. [Date(15/07/2008)]

Using LINQ in ASP.NET (Part 1)

Language INtegrated Query or LINQ changes the way you write your data driven applications. Previously developers used to think and code differently to access different data stores such as SQL server, XML files and in-memory collections. The new LINQ based programming can take away the hassles involved while developing such applications. In this multi part series I am going to explain how LINQ capabilities can be used ASP.NET applications. [Date(08/07/2008)]

Getting Started with IIS7 (Part 2)

In the Part 1 of this series you learnt the common tasks such as application pool management, web site creation and IIS application creation. In this part I will discuss about the hierarchical configuration system used by IIS7 along with feature delegation. [Date(29/06/2008)]

Note: For faster response please use Forums >> for your questions instead of the comments area! (Admin)