Category: My Blog

  • Blog
  • Category: My Blog

MIcorosfot and Oracle: Better Together

For almost two decades , Microsoft and oracle have teamed up to integrate their products for customers. Combining the strength of Microsoft and Oracle software means easier management and increased productivity through integration and interoperability.I have found a great site which provide all information to work on .NET Framework thorough support for Microsoft Visual Studio

C#.NET 2.0 Generics Class collection

C#.NET 2.0 provide great features with generics collection. Now you don’t have to write code for the coding for adding,removing objects. It all contains by the generics colleciton. here the sample user level class using System; using System.Collections.Generic; public class UserLevelCollection :System.Collections.Generic.List {#region Private Membersprivate int _intUserLevelID;private Guid _guidUserLevelGUID;private string _strDescription;private int _intCreatedBy;private DateTime _dtCreatedDate;private

Authentication and authorization in asp.net

Authentication is the process that determines the identity of a user after a user has been authenticated, a developer can determine if the identified use has authorization to proceed. Authorization is the process of determining whether an authenticated user is permitted access to other any part of application or access to specific data view that

Transfering data with sql server integration services…

If we want to transfer data from one database table to another database we need to write complex code and queries. But with sql server 2005 integration services you can do it sometimes. You have to use sql server business intelligence studio(bundled with sql server 2005 developer edition). I have found a great article that