Articles Archive for February 2009
Asp.net »
Introduction
In a simple creating an aspx page dynamically is a very tedious job. Whenever we think for dynamically creation scenarios stuck in mind about the overload to server etc. But with the help of this article one can attain the same as easily as creating another simple aspx page.
Need and Requirement
Now next words came to mind that what is the need to create an aspx page dynamically? Let me explain it:
You need to create a page, based on selected requirement at the moment.
Need to create a page from static html …
CSharp »
Introduction
In a simple words Constructor is nothing but a method, a special kind of method of a class, which gets executed when its (class) object is created.
Now, let’s take above in broader sense, A constructor is a class method automatically executed whenever class’s object is created or whenever class is initialized. Consider following bit of code:
public class MsDotNetHeaven
{
public MsDotNetHeaven()
{
//A default Constructor
}
//Class members
}
In above snippet, …
Asp.net »
LINQ Querry : A Step Ahead Series
History:
The article is related to previous posts :
1. Anonymous Types in LINQ: A Step Ahead Series
2. How to Test Anonymous Type Equality – LINQ: A Step Ahead Series
Introduction:
LINQ – Language Integreted Query is repeadily used in these days. The presented article is elaborate the idea “How to describe a LINQ Query”.
Simply, a query is an expression that retrieves data from a data source.
Scope:
The scope of the presented article is upto its title and projected scenarios.
Basics
LINQ Actions
Some basic example
Creating a LINQ project using Visual …
