Open a New Window With a Button

Place the following code where you would like the JavaScript button to appear:  <input type="button" value="Open Window" onclick="window.open('http://www.domain.com')"> Edit the JavaScript code according to your needs. ...

Read more

Redirect Visitor to a New Page using meta REFRESH Tag

If you want to redirect your visitors to a new page, then by using this HTML redirect code you can do that.  By Placing the following HTML redirect...

Read more

Open a new window on page unload | page unload event

In this tip i will tell you  a way to open a new window when someone leave a web page, this code may be what you're looking for.We...

Read more

Tips to create a Gradient Background Effect

This effect can be used for your entire web page background, or within your table cells.  To use the gradient effect as your web page background, use the...

Read more

Embed a Web Pages within other Web Pages

Here in this tip i will show you how you can Embed a Web Pages within other Web Pages.Use the below HTML code to do that. In the...

Read more

Changing Table Background Colors on Mouseover | Mouseover effect on HTML Tables

Here in this tip i will show you how you can change color of  HTML table cells when you place your pointer over the cells. Place your mouse...

Read more

Where to place Javascript in a HTML web page

There are three location where JavaScript can be placed for use in a webpage.     within the head tag     Within the body tag     In an external...

Read more

JavaScript Current Time Clock

This javascript code will display the current time from the client’s computer. This will display the format you might see on a typical digital clock -- HH:MM AM/PM...

Read more

Basic JavaScript Date and Time Functions

As the title of post implies, in this tutorial i will show you how to get the date and time from the visitor's computer using an example.here you...

Read more

SQL COUNT() Function

The COUNT() function returns the number of rows that matches a specified criteria. Syntax for SQL COUNT(column) The COUNT(columnname) function returns the total   number of Record of the...

Read more

Detecting guest User Permissions and guest User Access Status in SQL SERVER

When SQL Server is installed by default, the guest user is disabled for security reasons. There are many ways to get guest user status: Using SQL Server Management...

Read more

Moving User Database Files to the New Location On the Same Server in MS SQL Server

For Moving  User Database Files to the New Location On the Same Server in MS SQL Server You Can use Database backup and restore which is the best...

Read more

How to Copy Rows From One DataSet to Another DataSet in ASP.NET using C#

Copy Rows From One DataSet to Another DataSet in ASP.NET using C#. DataSets in ASP.NET are usually read-only.  This means that it is difficult to copy a row...

Read more

What is the difference between an application server and a Web server?

A Web server serves pages for viewing in a Web browser, while an application server provides methods that client applications can call. A Web server  handles HTTP requests,...

Read more

Difference between EnableViewState and ViewStateMode properties

ViewState is a very important  for the programmers in page performance point of view. Programmers leave it enable for all the controls even if there is no need...

Read more