Posted on October 20 2009 Read more...

Reading event log – Only exception part

Here is the few line code try { int intCount = 1; EventLog EventLog1 = new EventLog(); ...
Posted on October 19 2009 Read more...

whats new in asp.net 4.0

1) Permanent redirect - for HTTP 301 Moved Permanently you can now use RedirectPermanent("yourpage.aspx"); 2) Meta Properties- Now you can use page.MetaKeywords and page.metaDescription for setting up meta tags. 3) Compressing session state - ASP.NET 4 introduces a new compression option for both kinds of out-of-process session-state providers. Example when compressionEnabled is set to true ...
Posted on October 15 2009 Read more...

Singelton pattern

Singelton pattern is required where we need single instance of class. Example in financial domain applications there is major requirement of security and class need to have single instance and no other can use same instance of the class. We define singelton pattern as - Ensure a class has only one instance and provide a global point of ...
Posted on October 15 2009 Read more...

Difference between interface and abstract classes

Following are the 6 differences between abstract classes and interfaces :- 1) A class can implement as many interfaces, but an subclass at most one abstract class. 2) Abstract class can have non abstract methods but all methods of interface are abstract. 3) Abstract class can declare and use variables but interface cannot. 4) Interface don't have different access ...
Posted on October 15 2009 Read more...

Creating web services in SQL server

For creating web service in SQL server you need to understand http end points. So what is http end points ? It provide an interface using TCP or http for SOAP. Web Services in sql server return rowset data, scalar values , messages and errors. This all can be done withhout IIS. For creating web service in ...
Posted on October 15 2009 Read more...

Why HR Managers?

On this blog I would like to ask why HR managers needed in an organization ? Are they needed for Recruitment ? Are they needed for payroll management ? Are they needed for appraisel ? All these things can be outsourced as well, then why we need an HR manager in organization itself ? What ...
Posted on October 15 2009 Read more...

Good Managers – Manage Yourself ?

To be posted soon !!
Posted on October 15 2009 Read more...

What is WCF

WCF is based on SOA architecture. Its main objective is to achieve features of SOA and coming as close as possible to it. It is basically a framework for creating and distributing the connected applications. WCF provides the set if classes which provides developer a facility to create a SOA applications. So do you know what ...
Posted on October 14 2009 Read more...

What is new in SQL Server 2008

1) Geometry Data Types a. Point -  POINT ( 10 15 ) -  A point b. Multipoint  - MULTIPOINT (10 10, 50 50) - A multipoint with two points c. LineString  - LINESTRING (10 10,20 20,31 35) -  A line string with three points d. Polygon - POLYGON (( 10 10, 10 20, 20 20, 20 15, 10 10))  - ...
Get Adobe Flash playerPlugin by wpburn.com wordpress themes

Powered by Sachin Jain