1) Create Your Home Page In Html. In That Home

  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View 1) Create Your Home Page In Html. In That Home as PDF for free.

More details

  • Words: 781
  • Pages: 16
1) Create your home page in html. In that home page provide links to move to other pages like hobbies, educational info, personal info etc.

Main Program: Home Page

Person Information

Hobbies


Educational_info


Personal_info


Other_info


Hobbies: Home Pages

Hobbies:

Watching Movies

Programming

Sports

Music


Go to Home page
Educational Info: Home Pages

Educational_info:

B.E (Computer)

M.E (Computer)

Sun Certified Java Programmer (SCJP)

Sun Certified Web Component Developer (SCWCD)


Go to Home page
Personal: Home Pages

Personal_info :

Height: 5’4”

Hair Color: Black

About Me: Friendly and fun loving

Ph No.: 9727043122


Go to Home page


Other: Home Pages

Other:

Best Book: Java(Black Book)

Best Movie: Rang De Basanti

Best Songs: Tinka Tinka

Best Place: Kolkata,Kashmir,Manali

Best Actor: Abhishek

Best Actress: Tabu


Go to Home page


3) Using HTML control create a student information for to collect student information line Name, Address, Phone, Email, Birth Date, Hobbies etc. Use appropriate control.

Main Program: Registration Form
REGISTRATION FORM



Name
Address
Phone
Email
Gender male female
Birth Date
Hobbies sports reading riding developing other
Country <select name="Country">

Address


8) Create an ASP page to display time on server.

Main Program: <%@ Language=VBScript %> Time <% dim h h=hour(now()) response.write(now()) %>

9) Create an ASP page to illustrate the use of the buffer property of response object.

Main Program: (Buffer property = true) <%@ Language=VBScript %> <%response.Buffer=true%> <% Dim i,j Response.Write "it is: " & now() for i=1 to 500000 j=j+1 next Response.Write "
it is: " & now() %>

Main Program: (Buffer property = false) <%@ Language=VBScript %> <%response.Buffer=false%> <% Dim i,j Response.Write "it is: " & now() for i=1 to 500000 j=j+1 next Response.Write "
it is: " & now() %>

10) Create an ASP page to illustrate the use of FORM collection of Request Object.

Main Program: <%@ Language=VBScript %> <%Response.Write "Test= " & Request.Form("test")%> Simple Form Example


11) Create an ASP page to illustrate the use of Query String collection of Request Object.

Main Program: <%@ Language=VBScript%> <% Response.Write "Hello:" & "
" for i=1 to Request.QueryString("n").Count Response.Write(Request.QueryString("n")(i) & "
") Next %>

13) Create an ASP page to illustrate the use of Cookies (Create cookies in one page and read it in a second page).

Main Program: Registration1.asp… <TITLE>search REGISTRATION FORM

Insert text here:
C.asp… <%@language = vbscript%> <%option explicit%> <% dim a a=request.form("fname") response.cookies("name")=a response.write "thanks for searching" %>
click here for show cookies on other page Registration2.asp… <%@language = vbscript%> <%option explicit%> <TITLE>search <% dim b b=request.cookies("name") %>
Your saved cookies is: >


17) Create a HIT counter for your ASP page using an Application Object.

Main Program: <%@ Language = VBScript %> <% option explicit %> <% dim pageCount Application.lock Application("counter") = Application("counter") + 1 pageCount = Application("counter") Application.unlock Response.write("this page has been visited" & pageCount &" times.") %>

Related Documents

Html Home
November 2019 1
Home Page
April 2020 19
Advent In The Home
November 2019 14