Google Privacy Principles

Promote and Share your Links on Orkut

Its have been quite a time when Orkut launched Promote feature. In a recent announcement Orkut release its Bookmarklet feature. Now you can share any link with your friends on orkut by just clicking a Button. Visit this link to add a new button to your bookmark toolbar. Link shared will appear on your updates section as well as promote section in orkut.

orkut share.PNG

Index in Sql Server

Understanding Indexes

 

Indexes speed up the querying process by providing filtered access to rows in the data tables (just like book’s index) if they are used efficiently.

Indexes are created on columns in tables or views.

How to create a session variable in ASP.NET

  1. Define an ASP.NET web site.
  2. Create two pages within the site. The first page will contain an ASP.NET Web Form that will post back to itself and then redirect to the second page.

    Note: The reason this example uses two pages is to prove that a session variable is available to a second, third, fourth, etc. page in the web site. Request variables, which are an alternative to session variables, cannot be carried over from an ASP.NET Web Form on one page to a second page

Google Launches a URL Shortner : Goo.gl

Google now offers URL Shortening Service name Google URL Shortner for Google Toolbar and FeedBurner. Google Toolbar now use Goo.gl for link sharing. In an announcement today Google Launch this service. Google put three points to use Google URL Shortner over Other URL Shortening Services.

google.jpg

General Troubleshooting steps if your Internet is not connecting

If you are running a ADSL or ADSL2 Modem and your internet connection is not working, here are some basic steps which you can follow before calling any techsupport guy.

These Steps worked for MTNL, BSNL, Verizon, AOL and other telecom companies which provide internet connection through a phone line.

SQL Server 2005 error 10061

I needed to connect to sql server from a remote computer which is on my home lan.
But got this error message.

SQL Server: Backup and Restore Database using T-SQL

Its very easy to take Backup and Restore your Database using T-SQL even if you are not a DBA. In one of the client application, I wanted to take periodic Backup without logging in to SQL Server Management Studio. Here in this small tutorial I will try to elaborate the procedure of taking database backup using T-SQL.

1. Create a Database

CREATE DATABASE PracticeDB

2. Take Backup of the Database

BACKUP DATABASE PracticeDB
TO DISK='C:\PracticeD.bak'
WITH DESCRIPTION='Database Backup',
INIT,
PASSWORD='TryAgain'

Regular Expression to Check Password Strength

Last few days I was trying hard to come up with a Regular Expression for checking password strength in JavaScript. For those who don't know what is a regular expression and How it can be used, Here is a wonderful link for you. Regular Expression can be a very handy code, for Matching two strings, Data Validation and even Syntax Highlighting.

"Create your own FTP Server" on Windows XP, Windows Server 2003 and Windows Server 2008

Hi !

I was trying to create an FTP Server for last few days. After googling a lot I finally got the process of creating an FTP server, I would like to share this helpfull knowledge of creating ftp server.

You need to have a CD of your operating system.

For Windows XP

1. Start -> Control Panel -> Add or Remove Programs -> Add remove windows components. A window will appear.

Syndicate content