+91-943-185-6038 me@shashidharkumar.com

ASP – Date,Time and Text

Displaying the Current Date and Time The date and time described in this section are those that are on the server. Date To display the current date by itself in a Web page, type: <% =date %> at the point where you want it to appear. When you view the page in...

ASP- Cookies

Cookies method is very similar to Session method: the basic difference is that with Cookies method the information is save in the clients computer and not in the server, so it is more suitable for sites with a lot of visitors. This method implies sending information...

ASP-JavaScript

In this tutorial we will create a regular HTML page with a small javascript code, and we will use this javascript code to include in the page new information from a “.asp” file. First, let´s check this two pages: <br> javascript.html <html>...

ASP – Array

Introduction Working with Arrays Filtering values from a array Creating a table from data in a string Simple keyword search Introduction Instead of having our information (variables or numbers) in variables like Mydata1, Mydata2, Mydata3 etc, by using arrays our...