Program Code – Create Cookies

The code was written in VBScript. The code is created as a cookie that calculated the number of times a user visits a particular page. This code was run into an ASP server. The syntax for if … then else :

How to run classic ASP (.asp) Programs on Windows – ASP installation / setup

Hi Students, I found this video that describes the setup of IIS to run classic .asp program on Windows 10 OS. You have to follow every step including giving the right permissions to the folder where you are going to save your .asp pages. To edit codes, you can use any text-editor like notepad. For … Read more

Program code – Facebook signup page (additional programs in Web Technology)

This code is written in HTML5. This code shows facebook front page without any styles. Example use of form input type “date” is presented with < input type =”Date”> tag and how it shows date picker can be seen in output.

Program Code – Using Frames

This code is written in basic HTML(HyperText Markup Language). <iframe> tag The HTML <iframe> tag specifies an inline frame The src attribute defines the URL of the page to embed Always include a title  attribute (for screen readers) The height and width attributes specifies the size of the iframe After saving all the codes in the specified name, run Framemain.html to see the result.

Program Code – Mouse Over event

This program written in simple HTML (Hyper Text Markup Language) and with using Javascript.It’s work on any browsers. Onload event The onload event occurs when an object has been loaded . onload is most often used within the <body> element to execute a script once a web page has completely loaded all content (including images, … Read more

Program Code – Digital clock

This code is written in javascript. For that, you need to declare <script language=”javascript”> and the HTML file to be opened on your browser. The code uses various built-in “Date & Time” functions in javascript. It gets the current time and date from your operating system and shows it on an HTML page.

Program Code- Email validation

This code is written in javascript. For that, you need to set script language <script language=”javascript”> and the HTML file cloud opened on your browser. The output will check the entered mail is email is valid or not. If the email is not valid it shows a message box “Invalid Email id please enter correct … Read more