|
|
-
|
|
What is robots.txt? It is a simple text file that is created using any text editors. This file provided essential information to the search engine .This is mainly used for Search Engines to Navigate and Index a website. Best Practice robots.txt file improve search engine rankings for the site. So t......
|
|
-
|
|
Silverlight applications cannot access server-side classes or variables without mediator like Web Service or WCF Service or WCF RIA. Now I will walk through how we can call WCF Service in Silverlight4 application. We need to install silverlight4 SDK to work on Silverlight projects. Please follow th......
|
|
-
|
|
Parallel Stacks is one of the debugging enhancements in VS 2010 IDE that helps in debugging parallel programming. When you press F5 for debugging Parallel Stacks and Parallel Tasks windows get enabled in debug mode only. As you know, when a break point is set Program will stop at the Break Point. D......
|
|
-
|
|
VS2010 has new concept for Parallel Programming that is added as part of .NET Framework 4.0. This makes the ability to work in multi-core processor Environment. Digging through the code and debugging in parallel programming would definitely help. The new debugging windows added are 1. Parallel Ta......
|
|
-
|
|
If you are intrested to know What is ClientIDMode and how to set read my previous article on it. Practical Approach I have created a web project and placed the following code in the webform
Employee I......
|
|
-
|
|
Introduction We have been using ClientID’s in ASP.NET 2.0/3.5 that makes each control to generate the unique client side id attribute to that page or browser. But these ID’s were long and randomly generated. Developers who work on Client-Side programming that uses Java Script, JQuery or Ajax have b......
|
|
-
|
|
How ASP.NET4 Routing Works? Practical implementation of Routing in ASP.NET 4 is very simple. For example, consider the URL for my website that displays Label categories might look like below. http://himabinduvejella.blogspot.com/labels.aspx?category=Microsoft I do not want the URL to be traditi......
|
|
-
|
|
What is SEO?
SEO,the Search Engine Optimization is the technique for improving volume of traffic to a webpage/website from search engines like BING,GOOGLE via "natural" or un-paid mechanisms
Why SEO?
Search Engine Optimization places a vital role for a website that is available for public. It hel......
|
|
-
|
|
Introduction Anonymous types as the name suggests, help us to create an object without declaring its data type. Since name of the data type is not specified that the type is referred to as an anonymous type. We have lot of resources around us on this concept, but I still see some confu......
|
|
-
|
|
Why go for Connection Pooling?
Establishing connection to a database is cumbersome and resource burning, most important job in the applications, sometimes it might be slow. Most of the applications need to execute any query on the database server, a connection need to be established. Knowing about ......
|
|