January 2008 - Posts

2
Comments

Developing n-tier application with Microsoft.NET by Jalpesh P. Vadgama

There are lots of debates and information about developing n-tier application using Microsoft .net framework. Every one has its own mechanism. I found a interesting article at Microsoft site. It is very good and with the source code. Here are the link...
Filed under:
1
Comments

Capabilities Microsoft SQL Server,Microsoft ACCESS, MSDE by Jalpesh P. Vadgama

I have found a very good site with provide the comparison of Microsoft sql server, Microsoft and mdse capabilities on the basis of following. Number of instances per server Number of databases per instance / server Number of objects per database Number...
Filed under:
0
Comments

SQL Server Index by Jalpesh P. Vadgama

Some Times we want to retrive data fastly without wasting time to retrive it. SQL Server Indexes can greatly help to make data retrival fast and provide quick access to tables. Therer are four type of indexes in SQL Server 2000/2005. 1) Unique Key Index...
Filed under:
1
Comments

Performance Tuning on SQL Server by Jalpesh P. Vadgama

Performance is one of most important factor at the time of the application developement. If your application or website is not responding fast to user queries then it's accepted by the users. Here are the some tips to make fast retrival of data from sql...
Filed under:
0
Comments

Ten Must-Have Tools Every .NET Developer Should Download Now by Jalpesh P. Vadgama

James Avery created a list of tools that every developer should download. This list contains ..... Snippet Compiler Regulator CodeSmith Building a Custom Template NUnit Writing an NUnit Test FxCop Lutz Roeder's .NET Reflector NDoc NAnt NAnt in Action...
Filed under: , ,
4
Comments

Diffrence between Oracle 9i and sql server 2000 by Jalpesh P. Vadgama

Oracle and sql server both are great database management system and have great features. Often developer need to know what type of DBMS he should use for a particular needs.I have found a great comparison articles for oracle 9i and sql server 2000. Which...
Filed under:
1
Comments

What is Linq by Jalpesh P. Vadgama

Linq is the one of the most hottest release from Microsoft . Still lots of people don't know what linq is. I have found a great articles from Saqib Ullah . This articles covers all the aspects of Linq in each and every way. Following is the link for that...
Filed under: , , ,
0
Comments

C#.NET 2.0 class example for data acess layer using microsoft enterpise library by Jalpesh P. Vadgama

here is the data layer class example..... ///here is the enum public enum OprationType { Add = 1, Update = 2, Delete = 3 } //here is the Interfae public interface IDataStatndard { void Operation(OperationType enumOperationType); } //here is the user data...
Filed under: ,
1
Comments

C#.NET Business Logic Layer Class example by Jalpesh P. Vadgama

//here is the example of business logica layer class public class UserBll { #region Private Memebers private DashBoardData.UserData _objUserData; private DashBoardCollection.UserCollection _objUserCol; #endregion #region Methods public UserBll() { } public...
Filed under: , ,
0
Comments

ASP.NET 2.0 Folders by Jalpesh P. Vadgama

ASP.NET 2.0 allows us to create some folders via right clicking project. But lots of people are don't know why we need to create that folder. Here are the description for the each folder in asp.net 2.0 that we have to create for diffrent purpose. App_Code...
More Posts Next page »