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 moreRedirect 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 moreOpen 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 moreTips 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 moreEmbed 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 moreChanging 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 moreWhere 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 moreJavaScript 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 moreBasic 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 moreSQL 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 moreDetecting 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 moreMoving 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 moreHow 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 moreWhat 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 moreDifference 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