Google's Fabulous Search

With the fabulous search of google u can search more and more what u excepted. The results from the google are outstanding when compare to the other browsers.

And these features are Really amazing and the utilities like Translation,blogs, are need for our routine life.

in reference to: Google (view on Google Sidewiki)

Change the name of the .net Extension (.aspx, .ascx etc,)

Step 1:

IIS Configuration
Open Internet Information Services console, Click Properties of Default Website. In the default website properties, under the Home directory tab, click Configuration button as show in Fig :1


Fig : 1
 Step 2:
In the application configuration, the application extension mapping should be done for the aspnet_isapi.dll
Click Add button in Application Configuration as shown in Fig 2, it will shown Add/Edit Application Extension mapping as shown in Fig 3.


Fig : 2

Step 3:
In the Add/Edit Application Extension mapping, add the followings,
Executable - C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll
Extension - .Sample
Verbs - Limit to: GET, HEAD, POST, DEBUG


Fig : 3


The executable path is must - to deal with aspnet_isapi.dll, the Extension need to be provided instead of .aspx, the verbs limit to is must and Check out the option check that file exists


Step: 4

Web Config settings

1. In the application web.config file, the PageHandlerFactory should be implemented, to call the ASP.NET compilation system to compile, if necessary, and return the exact type corresponding to the URL, and then creates an instance of that type

Add the following code under http handlers section in web.config file


2. Build Provider

Need to Implement build provider in the web.config file to compile custom resource files of a particular file type and to generate code during compilation.There are separate build providers for each type of file, if the extension of the webform file is going to be changed Corresponding build provider should be implemented, the default Build provider for webform file is,

" add extension=".Sample" type="System.Web.Compilation.PageBuildProvider" "


customizable extension (ie., .Sample) is added in the extension tag.

The build provider should add under

The Default build provider for different file types are given below,



Step 4:

 In your application change the extension of the File, and run the application, For eg., Javascript.aspx is included in your file change in to JavaScript.Sample .