Archive for June 2009

WCF - Interview Questions Part 3

Explain transactions in WCF.Transactions in WCF allow several components to concurrently participate in an operation. Transactions are a group of operations that are atomic, consistent, isolated and durable. WCF has features that allow distributed transactions.

WCF - Interview Questions Part 3

Explain transactions in WCF.Transactions in WCF allow several components to concurrently participate in an operation. Transactions are a group of operations that are atomic, consistent, isolated and durable. WCF has features that allow distributed transactions.

WCF - Interview Questions Part 3

Explain transactions in WCF.Transactions in WCF allow several components to concurrently participate in an operation. Transactions are a group of operations that are atomic, consistent, isolated and durable. WCF has features that allow distributed transactions.

WCF - Interview Questions Part 2

What is address in WCF and how many types of transport schemas are there in WCF?Address is a way of letting client know that where a service is located. In WCF, every service is associated with a unique address. This contains the location of the service

WCF - Interview Questions Part 2

What is address in WCF and how many types of transport schemas are there in WCF?Address is a way of letting client know that where a service is located. In WCF, every service is associated with a unique address. This contains the location of the service

WCF - Interview Questions Part 2

What is address in WCF and how many types of transport schemas are there in WCF?Address is a way of letting client know that where a service is located. In WCF, every service is associated with a unique address. This contains the location of the service

WCF - Interview Questions Part 1

What is WCF?Windows Communication Foundation (WCF) is an SDK for developing and deploying services on Windows. WCF provides a runtime environment for services, enabling you to expose CLR types as services, and to consume other services as CLR types.WCF

WCF - Interview Questions Part 1

What is WCF?Windows Communication Foundation (WCF) is an SDK for developing and deploying services on Windows. WCF provides a runtime environment for services, enabling you to expose CLR types as services, and to consume other services as CLR types.WCF

WCF - Interview Questions Part 1

What is WCF?Windows Communication Foundation (WCF) is an SDK for developing and deploying services on Windows. WCF provides a runtime environment for services, enabling you to expose CLR types as services, and to consume other services as CLR types.WCF

WCF Performance: Making your service run 3 times faster

Wisely changing WCF defaults can yield a significant improvement in your service performance. The exact changes need to be made and their exact effect are dependent in the scenario. The example below how to speed up a certain service 3 times faster.Read

WCF Performance: Making your service run 3 times faster

Wisely changing WCF defaults can yield a significant improvement in your service performance. The exact changes need to be made and their exact effect are dependent in the scenario. The example below how to speed up a certain service 3 times faster.Read

WCF Performance: Making your service run 3 times faster

Wisely changing WCF defaults can yield a significant improvement in your service performance. The exact changes need to be made and their exact effect are dependent in the scenario. The example below how to speed up a certain service 3 times faster.Read

Java Script : 'toFixed' Math function for number format

<div style="text-align: justify;">We can use 'toFixed()' function in math to format a number upto required decimal places. The value we get is after rounding the number upto the decimal place required. This function is frequently used in java script.

Java Script : 'toFixed' Math function for number format

<div style="text-align: justify;">We can use 'toFixed()' function in math to format a number upto required decimal places. The value we get is after rounding the number upto the decimal place required. This function is frequently used in java script.

Java Script : 'toFixed' Math function for number format

<div style="text-align: justify;">We can use 'toFixed()' function in math to format a number upto required decimal places. The value we get is after rounding the number upto the decimal place required. This function is frequently used in java script.

How to Drop Primary Key Contraint from a Table

First, we will create a table that has primary key. Next, we will drop the primary key successfully using the correct syntax of SQL Server.CREATE TABLE Table1(Col1 INT NOT NULL,Col2 VARCHAR(100)CONSTRAINT PK_Table1_Col1 PRIMARY KEY CLUSTERED (Col1 ASC))GOSecond,

How to Drop Primary Key Contraint from a Table

First, we will create a table that has primary key. Next, we will drop the primary key successfully using the correct syntax of SQL Server.CREATE TABLE Table1(Col1 INT NOT NULL,Col2 VARCHAR(100)CONSTRAINT PK_Table1_Col1 PRIMARY KEY CLUSTERED (Col1 ASC))GOSecond,

How to Drop Primary Key Contraint from a Table

First, we will create a table that has primary key. Next, we will drop the primary key successfully using the correct syntax of SQL Server.CREATE TABLE Table1(Col1 INT NOT NULL,Col2 VARCHAR(100)CONSTRAINT PK_Table1_Col1 PRIMARY KEY CLUSTERED (Col1 ASC))GOSecond,

Automatic Thumbnail and Read More Function for Blogger

Read more function is used to cut our post on homepage, post will appear fully when we click read more link. It's cut automatically and if we insert image, it appears thumbnail.This is automatic read more function with thumbnail. We just need to set

Automatic Thumbnail and Read More Function for Blogger

Read more function is used to cut our post on homepage, post will appear fully when we click read more link. It's cut automatically and if we insert image, it appears thumbnail.This is automatic read more function with thumbnail. We just need to set

Automatic Thumbnail and Read More Function for Blogger

Read more function is used to cut our post on homepage, post will appear fully when we click read more link. It's cut automatically and if we insert image, it appears thumbnail.This is automatic read more function with thumbnail. We just need to set

To Create a DropDown List from an ENUM

You have an 'enum' defined as follows:public enum CompanyAddressType { Unknown = 0, Primary = 1, Warehouse = 2, Distribution_Center = 3, Cross_Dock = 4 }You want to iterate through the list and put the data into

To Create a DropDown List from an ENUM

You have an 'enum' defined as follows:public enum CompanyAddressType { Unknown = 0, Primary = 1, Warehouse = 2, Distribution_Center = 3, Cross_Dock = 4 }You want to iterate through the list and put the data into

To Create a DropDown List from an ENUM

You have an 'enum' defined as follows:public enum CompanyAddressType { Unknown = 0, Primary = 1, Warehouse = 2, Distribution_Center = 3, Cross_Dock = 4 }You want to iterate through the list and put the data into