Remove blog title from Google's Search Results

By default, the google and lots of  search engines displays search results of  blog's  (Blogger)  in the following format as:

Closing window without prompt in javascript

I have search a lots of solution for closing window without prompt and I got lots of script for that but script was  not working for all the version of  internet explore some working in IE7 and some in IE8 so I wrote an unique solution which works in all version of internet explore.

Browser detection in javascript

Here is the article for accessing browser info like(Name, version, user agent, cookies enable or disable etc) through javascript it can be done through an object named navigator, navigator object have lots of properties e.g appName for Browser Name,appCodeName for getting Code Name, appVersion for getting browser version info, userAgent etc.

Customize comment box in blogger

Now it is possible to customize your blogger comment box in simple way there no need to edit HTML of your blogger just through the adding some simple css to the blogger.

Javascript for highlighting text inside a table

The bellow article is for how to highlighting text into a webpage through java script you can try demo bellow just type words to the text box it will be highlighted in the table as yellow background color you can add you custom css for the highlighted text but the name of css class must be .highlighted.

What is NameSpace in .Net

This a basic question which allways asked in the interview that what is the namespace ,do you know about namespace,can you tell me some words about namespace.

Searching in HTML table with javascript

I have search a lot of article for how to make search in HTML table but i didn't find any good article so i wrote my own article for that,

Difference between abstract class and interface

Here is an example what is the difference between abstract class and interface in c# asp.net to know more about what is the

What is abstract class in c#

Abstract class is a class that contain complete and abstract (incomplete) both type of member and it can not be instantiated, Abstract classes are one of the essential behaviors provided by

What is a Interface in C# .Net

Interface is a type which contains only the signatures of methods, delegates or events, it has no implementation.
Implementation of the