-
Subscription
About me

Name: Sachin, aka "Sach"
Web Site: http://www.sachinjain.me
Bio: I am an IT professional from india who is working from last 8 years in this industry and currently working with global leading companies. Here I would like to share my knowledge, experience and hopefully that will be useful to you people.
Categories
- .Net (5)
- WCF (2)
- Web Services (1)
- C# (5)
- Design Patterns (2)
- Management (4)
- Individual (3)
- Organization (2)
- New Updates (2)
- SQL Server (4)
- SQL Server 2005 (3)
- SQL Server 2008 (4)
- .Net (5)
Popular
Reading event log – Only exception part
Here is the few line code
try
{
int intCount = 1;
EventLog EventLog1 = new EventLog();
...
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 ...
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 ...
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 ...
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 ...
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 ...
Good Managers – Manage Yourself ?
To be posted soon !!
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 ...
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)) - ...