SlideShare a Scribd company logo
1 of 16
IITT College of Engineering


        Department of Information Technology




                   PRACTICAL FILE

                WEB ADMINISTRATION




SUBMITTED TO: -

ER. SONIA MAM



                                          SUBMITTED BY:-

                                       DUSHMANTA NATH

                                                81301113016
                                                 IT(6th Sem)
                IITT COLLEGE OF
                  ENGINEERING
S.NO        NAME OF THE EXPERIMENT         DATE   SIGN
1)     Design simple web pages using
       standard HTML tags like HEAD,
       TITLE, BODY.
2)     Desogn HTML web pages which
       make the use of INPUT, META,
       SCRIPT, FORM, APPLET,
       BGSOUND, MAP.
3)     Working with various attribute of
       standard HTML element.
4)     Write code which does the form
       validation in variousINPUT
       element like TEXTFIELD,
       TEXTAREA, PASSWORD,
       SELECTION LIST etc.
5)     Using databases access in ASP.
6)     Writing server side program for
       web pages using ASP’s REQUEST,
       RESPONSE AND APPLICATION
       objects.
7)     WRITING SERVER SIDE
       PROGRAMS FOR WEB PAGES
       USING ASP’S SESSION AND
       SERVER OBJECTS
8)     CREATE A WEB PAGE USING PHP
EXPERIMENT NO:-1
DESIGN A WEB PAGE USING STANDARD HTML TAGS LIKE HEAD, TITLE, BODY


<html>

<head>
<meta charset="utf-8"><meta name="generator"
content="CoffeeCupHTMLEditor(www.coffeecup.com)">
<meta name="created" content="Mon, 04 Apr 2011 10:08:53 GMT">
<meta name="description" content="">
<meta name="keywords" content="">
<title>
</title>
</head>

<body bgcolor="yellow">
<h1 align="center"><font color="#00FF40"><u>
        WELCOME TO A WEBPAGE</u></font></h1>

<h1 align="left"><font color="#FF8040"><em>
MY INFORAMTION</em></font></h1>

<h3>NAME:-<b><font color="#FFFFFF">
       HIMANSHU GUPTA</font></b></h3>

<h3>FATHER'S NAME:-<b><font color="#FFFFFF">
MR.NARENDRA KUMAR GUPTA</font></b></h3>

<h3>DATE OF BIRTH:-<b><font color="#FFFFFF">
13</font></b>/<b><font color="#FFFFFF">
    05</font></b>/<b><font color="#FFFFFF">
1990</font></b></h3>

<h3>SEX:-<b><font color="#FFFFFF">
MALE</font></b></h3>

<h3>MARRTIAL STATUS:-<b><font color="#FFFFFF">
SINGLE</font></b></h3>

<h3>COLLEGE:-<b><font color="#FFFFFF">
IITT COLLEGE OF ENGINEERING</font></b></h3>
</body>

</html>
EXPERIMENT NO:-2
DESIGN A HTML WEB PAGE WHICH MAKE USE OF INPUT, META, SCRIPT, FORM,
APPLET, BGSOUND, MAP


<html>

<head>
<meta charset="utf-8">
<meta name="generator" content="CoffeeCup HTML Editor (www.coffeecup.com)">
<meta name="created" content="Wed, 20 Apr 2011 12:30:02 GMT">
<meta name="description" content="">
<meta name="keywords" content="">
<title>
</title>

</head>

<script lang="javascript"></script>

<body bgcolor="green">
<embed src="file//E:/mp3 songsYamlaPaglaDeewana (2010)02 - Charha De Rang
[www.DJMaza.Com].mp3" hidden="true"autostart="true"></embed>
<bgsoundsrc="file//E:/mp3 songsYamlaPaglaDeewana (2010)02 - Charha De Rang
[www.DJMaza.Com].mp3">

<p align="center"><b>COLLEGE FORM</b></p>

<form>
<fieldset>
<legend>BASIC DETAIL</legend>

<b>NAME</b><input type="text" name="NAME"
size="20"maxlength="30" /><br /><br />

<b>COURSE</b><input type="text" name="NAME"
size="20"maxlength="30" /><br /><br />

<b>SEX</b><br /><br />
MALE<input type="radio" name="SEX" value="MALE" checked/>
FEMALE<input type="radio" name="SEX" value="FEMALE" /><br />

<b>NATURE OF COURSE</b><br />
REGULAR<input type="checkbox" name="REGULAR" value="REGULAR" checked/>
PRIVATE<input type="checkbox" name="PRIVATE" value="PRIVATE" />

</fieldset><br />

<fieldset>

<legend>BASIC QUALIFICATION</legend>
<tableBORDER=7>
<tr>
<th>QUALIFICATION</th>
<th>PASSING YEAR</th>
<th>PERCENTAGE</th>
</tr>

<tr>
<th>HIGH SCHOOL</th>
<th><input type="text" name="PASSING YEAR" size="20"maxlength="30"></th>
<th><input type="text" name="PERCENTAGE" size="20"></th>
</tr>

<tr>
<th>MATRIX 12<sup>TH</sup></th>
<th><input type="text" name="PASSING YEAR" size="20"maxlength="30"></th>
<th><input type="text" name="PERCENTAGE" size="20"></th>
</tr>

<tr>
<th>GRADUATE</th>
<th><input type="text" name="PASSING YEAR" size="20"maxlength="30"></th>
<th><input type="text" name="PERCENTAGE" size="20"></th>
</tr>

</table>

</fieldset><br />

<input type="file" name="resume" size="30" accept="image/jpeg"><br />
<input type="submit" value="submit" />
<input type="reset" value="reset">

</form>
</body>

</html>
EXPERIMENT NO:-3
WORKING WITH VARIOUS ATTRIBUTES OF STANDARD HTML ELEMENT


ATTRIBUTE:-
It is the property of HTML tag that is specified in the opening angle brackets.
It supplies additional information like color, size, home font style etc. to the browser about a tag.

VARIOUS ATTRIBUTE OF STANDARD HTML ELEMENT:-

      1) HEIGHT:-
        These attributes used to set the dimension of an image/marquee.
        The value from 1 to 100 percent.

        <html>

        <head>
        <title>
        </title>
        </head>

        <body>
        <imgsrc="file://E:/A.jpg"height="200" />
        </body>

        </html>

      2) COLOR:-
         It specifies font color is the format # RR GG BB using numbers.
         Color name also used.


          <html>

          <head>
          <title>
          </title>
          </head>

          <body>
          <FONT face="arial" size="+5" color="green">IITT</FONT>
          <FONT face="courier new" size="+4" color="red">COLLEGE</FONT>
          <FONT face="arial" size="+5" color="orange">OF</FONT>
          <FONT face="courier new" size="+4" color="blue">ENGINEERING</FONT>
          </body>

          </html>
3) SRC:-
        It defines the URL of the image.
        It identifies the specified image to use with its type.
        The commonly used image file type are GIF (Graphics Interchange Format),
        JPEG (Joint Photographic Expert Group)


<html>

         <head>
         <title>
         </title>
         </head>

         <body>
         <imgsrc="FILE://E:/Window7.jpg"width="1300" />
         </body>

         </html>

     4) ALT:-
        It is used to include”pop-up text” for each hotspot.
        This text appears when a user moves the mouse pointer over any hotspot.


           <html>

           <head>
           <title>
           </title>
           </head>

           <body>
           <imgsrc="FILE://E:/Window7.jpg"width="1300"alt="image window 7" />
           </body>

           </html>
EXPERIMENT NO:-4
WRITE CODE WHICH DOES THE FORM VALIDATION IN VARIOUS INPUT ELEMENT LIKE
TEXTFIELD, TEXTAREA, PASSWORD, SELECTION LIST ETC.


<html>

<head>
<meta charset="utf-8">
<meta name="generator" content="CoffeeCup HTML Editor (www.coffeecup.com)">
<meta name="created" content="Mon, 04 Apr 2011 15:23:06 GMT">
<meta name="description" content="">
<meta name="keywords" content="">
<title>
</title>
</head>

<body bgcolor="Fuchsia">

<p align="center"><b>
STUDENT'S BASIC INFORMATION</b></p>
<form>

<input type="text" name="NAME"
size="20"maxlength="30" />NAME<br /><br />
<input type="password" name="PASSWORD"
size="20"maxlength="30" />PASSWORD<br /><br />

<b>SEX</b>
<input type="radio" name="SEX" value="MALE" checked/>MALE<br />
<input type="radio" name="SEX" value="FEMALE" />FEMALE<br />

<p>COUNTRY</p>
<select name="COUNTRY">
<option value="SELECT COUNTRY">SELECT COUNTRY</option>
<option value="INDIA">INDIA</option>
<option value="CHINA">CHINA</option>
<option value="PAKISTAN">PAKISTAN</option>
<option value="USA">USA</option>
<option value="OTHER">OTHER</option>
</select>

<p>STATE</p>
<select name="STATE">
<option value="SELECT STATE">SELECT STATE</option>
<option value="UTTAR PRADESH">UTTAR PRADESH</option>
<option value="MADHYA PRADESH">MADHYA PRADESH</option>
<option value="HIMACHAL PRADESH">HIMACHAL PRADESH</option>
<option value="PUNJAB">PUNJAB</option>
<option value="OTHER">OTHER</option>
</select>

<textarea id="textarea1" cols="20" rows="2">
PLACE YOUR COMMENT</textarea>COMMENTS<br />

<input type="submit" value="submit" />
<input type="reset" value="reset">
</form>

</body>

</html>
EXPERIMENT NO:-5
USING DATABASES ACCESS IN ASP


     1) Create a database:-

            a) Open SQL SERVER 7.0 ENTERPRISE MANAGER(start(program(sql server
               7.0(enterprise manager).

            b) Expand the enterprise manager tree, selecting the SQL server to which we would like to add
               the database, until we see the “database” node.

            c) Right click on the “database” node and select “databases”.

            d) On the “database properties” dialog box,enter the “15 second” in the “name” field.


     2) Create an ODBC connection:-

     A)
            a) Open control panel(start(settings(control panel).

            b) Double click on the “data source(ODBC)” icons in the control panel.

            c) Select the “system DSN” tab on the “ODBC data source administrator”dialog box”.

            d) Click the “add” button.

            e) On the “create new data source” dialog box,highlight”sql server” and click”finish”.


B)
           a)   On the “create a new data source to sql server” dialog box.

           B )Enter “15 seconds” in the “name “ field.

          c) In the “description” field, enter a brief description for the DSN. I entered”15
              seconds” sampledsn.

          d) From the “server” dropo down box, select the sql server to which you would like to
                connect.

            e) Click the “next” button.
C)
             a)   On the second “create a new data source to sql server”

b) Select the “with sql server authentication using a login id and password entered by the
user”.

c)    In the login id textbox, enter “sa”.

d)    Leave the “password” textbox empty.

e)    Click the “next” button.

D)
          a) On the third “create a new data source to sql server”

     b) Select the “change the default databases to” checkbox and select”15 seconds “ from the
accompanying select box.

E)
      a) On the fourth“create a new data source to sql server”

     b)      Click the “finish” button.

F)
     a)      On the “odbcmicrosftsql server setup”, do one of the following

      a.1)Click” test data source” button to ensure that the odbc connection has been created
successfully.
a.2) Click “ok” button to complete the ODBC DSN setup process.
EXPERIMENT NO:-6

WRITING SERVER SIDE PROGRAMS FOR WEB PAGES USING ASP’S REQUEST AND RESPONSE OBJECTS.



          1) REQUEST OBJECT:-


          <html>

          <head>
          <title>
          </title>
          </head>

          <body>

          <p>

          <b>You are browsing this site with:</b>
          <%Response.Write(Request.ServerVariables("http_user_agent"))%>

          </p>
          <p>

          <b>Your IP address is:</b>
          <%Response.Write(Request.ServerVariables("remote_addr"))%>

          </p>
          <p>

          <b>The DNS lookup of the IP address is:</b>
          <%Response.Write(Request.ServerVariables("remote_host"))%>

          </p>
          <p>

          <b>The method used to call the page:</b>
          <%Response.Write(Request.ServerVariables("request_method"))%>

          </p>
          <p>

          <b>The server's domain name:</b>
          <%Response.Write(Request.ServerVariables("server_name"))%>

          </p>
          <p>
<b>The server's port:</b>
<%Response.Write(Request.ServerVariables("server_port"))%>
</p>

<p>
<b>The server's software:</b>
<%Response.Write(Request.ServerVariables("server_software"))%>
</p>

</body>
</html>



2) REPONSE OBJECT:-


  <html>
  <head>
  <title></title>
  </head>
  <body>

  <%
  If Response.IsClientConnected=true then
  Response.Write("The user is still connected!")
  else
  Response.Write("The user is not connected!")
  end if
  %>

  </body>
  </html>
EXPERIMENT NO:-7

WRITING SERVER SIDE PROGRAMS FOR WEB PAGES USING ASP’S SESSION AND SERVEROBJECTS.


   1) SESSION OBJECT:-


      <html>
      <head>
      <title>
      </title>
      </head>
      <body>

      <%
      response.write("<p>")
      response.write("The default LCID for this page is: " &Session.LCID& "<br
      />")
      response.write("The Date format for the above LCID is: " & date() & "<br
      />")
      response.write("The Currency format for the above LCID is: "
      &FormatCurrency(350))
      response.write("</p>")

      Session.LCID=1036

      response.write("<p>")
      response.write("The LCID is now changed to: " &Session.LCID& "<br />")
      response.write("The Date format for the above LCID is: " & date() & "<br
      />")
      response.write("The Currency format for the above LCID is: "
      &FormatCurrency(350))
      response.write("</p>")

      Session.LCID = 3079

      response.write("<p>")
      response.write("The LCID is now changed to: " &Session.LCID& "<br />")
      response.write("The Date format for the above LCID is: " & date() & "<br
      />")
      response.write("The Currency format for the above LCID is: "
      &FormatCurrency(350))
      response.write("</p>")

      Session.LCID = 2057

      response.write("<p>")
      response.write("The LCID is now changed to: " &Session.LCID& "<br />")
      response.write("The Date format for the above LCID is: " & date() & "<br
      />")
response.write("The Currency format for the above LCID is: "
  &FormatCurrency(350))
  response.write("</p>")
  %>

  </body>
  </html>

2) SERVER OBJECT:-


  <html>
  <body>

  <%
  Set fs = Server.CreateObject("Scripting.FileSystemObject")
  Set rs = fs.GetFile(Server.MapPath("demo_lastmodified.asp"))
  modified = rs.DateLastModified
  %>

  This file was last modified on:
  <%response.write(modified)
  Set rs = Nothing
  Set fs = Nothing
  %>

  </body>
  </html>
EXPERIMENT NO:-8

CREATE A WEBPAGE USING PHP.

SIMPLE HTML PAGE


<html>

<head>
<title>
</title>
</head>

<body>
<form action="welcome.php" method="post">

NAME:-<input type="text" name="fname" />
AGE:-<input type="text" name="age" />

<input type="submit" />

</form>

</body>

</html>

When we fill the form above and click on the submit button, the form data is sent to php file called as
“welcome.php”


<html>

<head>
<title>
</title>
</head>

<body>

Welcome <?php echo $_POST[“fname”];?><br/>
You<?php echo $_POST[“age”];?<br/>

</body>

</html>

More Related Content

What's hot

virtual hosting and configuration
virtual hosting and configurationvirtual hosting and configuration
virtual hosting and configurationHAMZA AHMED
 
Asp.net mvc basic introduction
Asp.net mvc basic introductionAsp.net mvc basic introduction
Asp.net mvc basic introductionBhagath Gopinath
 
Virtualization and its Types
Virtualization and its TypesVirtualization and its Types
Virtualization and its TypesHTS Hosting
 
A brief history of cloud computing
A brief history of cloud computingA brief history of cloud computing
A brief history of cloud computingOneserve
 
BIOS basic input output system
BIOS basic input output systemBIOS basic input output system
BIOS basic input output systemVipul Buchade
 
Lecture 05 (Word Processing).pptx
Lecture 05 (Word Processing).pptxLecture 05 (Word Processing).pptx
Lecture 05 (Word Processing).pptxMwangaPrayGod
 
PPT on Cloud computing
PPT on Cloud computingPPT on Cloud computing
PPT on Cloud computingVinny Vessel
 
basic concept of Cloud computing and its architecture
basic concept of Cloud computing  and its architecturebasic concept of Cloud computing  and its architecture
basic concept of Cloud computing and its architectureMohammad Ilyas Malik
 
Virtual Machine Concept
Virtual Machine ConceptVirtual Machine Concept
Virtual Machine Conceptfatimaanique1
 
Hardware supports for Virtualization
Hardware supports for VirtualizationHardware supports for Virtualization
Hardware supports for VirtualizationYoonje Choi
 

What's hot (20)

Hard drive partitions
Hard drive partitionsHard drive partitions
Hard drive partitions
 
virtual hosting and configuration
virtual hosting and configurationvirtual hosting and configuration
virtual hosting and configuration
 
Textbox n label
Textbox n labelTextbox n label
Textbox n label
 
Asp.net mvc basic introduction
Asp.net mvc basic introductionAsp.net mvc basic introduction
Asp.net mvc basic introduction
 
Jsp lifecycle
Jsp   lifecycleJsp   lifecycle
Jsp lifecycle
 
Virtual Machine
Virtual MachineVirtual Machine
Virtual Machine
 
Virtualization and its Types
Virtualization and its TypesVirtualization and its Types
Virtualization and its Types
 
A brief history of cloud computing
A brief history of cloud computingA brief history of cloud computing
A brief history of cloud computing
 
Cloud computing What Why How
Cloud computing What Why HowCloud computing What Why How
Cloud computing What Why How
 
HDD Partition
HDD PartitionHDD Partition
HDD Partition
 
BIOS basic input output system
BIOS basic input output systemBIOS basic input output system
BIOS basic input output system
 
Lecture 05 (Word Processing).pptx
Lecture 05 (Word Processing).pptxLecture 05 (Word Processing).pptx
Lecture 05 (Word Processing).pptx
 
PPT on Cloud computing
PPT on Cloud computingPPT on Cloud computing
PPT on Cloud computing
 
Cloud Service Models
Cloud Service ModelsCloud Service Models
Cloud Service Models
 
basic concept of Cloud computing and its architecture
basic concept of Cloud computing  and its architecturebasic concept of Cloud computing  and its architecture
basic concept of Cloud computing and its architecture
 
Virtual Machine Concept
Virtual Machine ConceptVirtual Machine Concept
Virtual Machine Concept
 
Computer hardware
Computer hardwareComputer hardware
Computer hardware
 
Virtual machine
Virtual machineVirtual machine
Virtual machine
 
C# Private assembly
C# Private assemblyC# Private assembly
C# Private assembly
 
Hardware supports for Virtualization
Hardware supports for VirtualizationHardware supports for Virtualization
Hardware supports for Virtualization
 

Similar to IT- 328 Web Administration (Practicals)

HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and ImprovedTimothy Fisher
 
Expedite the development lifecycle with MongoDB and serverless - DEM02 - Sant...
Expedite the development lifecycle with MongoDB and serverless - DEM02 - Sant...Expedite the development lifecycle with MongoDB and serverless - DEM02 - Sant...
Expedite the development lifecycle with MongoDB and serverless - DEM02 - Sant...Amazon Web Services
 
Website designing company in faridabad
Website designing company in faridabadWebsite designing company in faridabad
Website designing company in faridabadCss Founder
 
Meteor + Ionic Introduction
Meteor + Ionic IntroductionMeteor + Ionic Introduction
Meteor + Ionic IntroductionLearningTech
 
Oracle Endeca Developer's Guide
Oracle Endeca Developer's GuideOracle Endeca Developer's Guide
Oracle Endeca Developer's GuideKeyur Shah
 
Top 15-asp-dot-net-interview-questions-and-answers
Top 15-asp-dot-net-interview-questions-and-answersTop 15-asp-dot-net-interview-questions-and-answers
Top 15-asp-dot-net-interview-questions-and-answerssonia merchant
 
Top 15 asp dot net interview questions and answers
Top 15 asp dot net interview questions and answersTop 15 asp dot net interview questions and answers
Top 15 asp dot net interview questions and answersPooja Gaikwad
 
IT8005 Electronic Commerces Notes UNIT 1
IT8005 Electronic Commerces Notes UNIT 1IT8005 Electronic Commerces Notes UNIT 1
IT8005 Electronic Commerces Notes UNIT 1ArunsunaiComputer
 
Introduction to whats new in css3
Introduction to whats new in css3Introduction to whats new in css3
Introduction to whats new in css3Usman Mehmood
 

Similar to IT- 328 Web Administration (Practicals) (20)

Unit 2
Unit 2 Unit 2
Unit 2
 
Unit 2
Unit 2 Unit 2
Unit 2
 
Presentation Tier optimizations
Presentation Tier optimizationsPresentation Tier optimizations
Presentation Tier optimizations
 
php
phpphp
php
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and Improved
 
Expedite the development lifecycle with MongoDB and serverless - DEM02 - Sant...
Expedite the development lifecycle with MongoDB and serverless - DEM02 - Sant...Expedite the development lifecycle with MongoDB and serverless - DEM02 - Sant...
Expedite the development lifecycle with MongoDB and serverless - DEM02 - Sant...
 
Website designing company in faridabad
Website designing company in faridabadWebsite designing company in faridabad
Website designing company in faridabad
 
Meteor + Ionic Introduction
Meteor + Ionic IntroductionMeteor + Ionic Introduction
Meteor + Ionic Introduction
 
Oracle Endeca Developer's Guide
Oracle Endeca Developer's GuideOracle Endeca Developer's Guide
Oracle Endeca Developer's Guide
 
Web technologies part-2
Web technologies part-2Web technologies part-2
Web technologies part-2
 
HTML, CSS and XML
HTML, CSS and XMLHTML, CSS and XML
HTML, CSS and XML
 
Top 15-asp-dot-net-interview-questions-and-answers
Top 15-asp-dot-net-interview-questions-and-answersTop 15-asp-dot-net-interview-questions-and-answers
Top 15-asp-dot-net-interview-questions-and-answers
 
Top 15 asp dot net interview questions and answers
Top 15 asp dot net interview questions and answersTop 15 asp dot net interview questions and answers
Top 15 asp dot net interview questions and answers
 
C# Unit5 Notes
C# Unit5 NotesC# Unit5 Notes
C# Unit5 Notes
 
IT8005 Electronic Commerces Notes UNIT 1
IT8005 Electronic Commerces Notes UNIT 1IT8005 Electronic Commerces Notes UNIT 1
IT8005 Electronic Commerces Notes UNIT 1
 
CAP 756 UNIT 1.pptx
CAP 756 UNIT 1.pptxCAP 756 UNIT 1.pptx
CAP 756 UNIT 1.pptx
 
PPT
PPTPPT
PPT
 
Introduction to web design
Introduction to web designIntroduction to web design
Introduction to web design
 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
 
Introduction to whats new in css3
Introduction to whats new in css3Introduction to whats new in css3
Introduction to whats new in css3
 

More from Dushmanta Nath

C language (Collected By Dushmanta)
C language  (Collected By Dushmanta)C language  (Collected By Dushmanta)
C language (Collected By Dushmanta)Dushmanta Nath
 
C programming session 09
C programming session 09C programming session 09
C programming session 09Dushmanta Nath
 
C programming session 08
C programming session 08C programming session 08
C programming session 08Dushmanta Nath
 
C programming session 07
C programming session 07C programming session 07
C programming session 07Dushmanta Nath
 
C programming session 05
C programming session 05C programming session 05
C programming session 05Dushmanta Nath
 
C programming session 04
C programming session 04C programming session 04
C programming session 04Dushmanta Nath
 
C programming session 03
C programming session 03C programming session 03
C programming session 03Dushmanta Nath
 
C programming session 02
C programming session 02C programming session 02
C programming session 02Dushmanta Nath
 
C programming session 01
C programming session 01C programming session 01
C programming session 01Dushmanta Nath
 
C programming session 11
C programming session 11C programming session 11
C programming session 11Dushmanta Nath
 
Global Warming Project
Global Warming ProjectGlobal Warming Project
Global Warming ProjectDushmanta Nath
 
Manufacturing Practice (MP) Training Project
Manufacturing Practice (MP) Training ProjectManufacturing Practice (MP) Training Project
Manufacturing Practice (MP) Training ProjectDushmanta Nath
 
IT-314 MIS (Practicals)
IT-314 MIS (Practicals)IT-314 MIS (Practicals)
IT-314 MIS (Practicals)Dushmanta Nath
 

More from Dushmanta Nath (15)

C language (Collected By Dushmanta)
C language  (Collected By Dushmanta)C language  (Collected By Dushmanta)
C language (Collected By Dushmanta)
 
C programming session 09
C programming session 09C programming session 09
C programming session 09
 
C programming session 08
C programming session 08C programming session 08
C programming session 08
 
C programming session 07
C programming session 07C programming session 07
C programming session 07
 
C programming session 05
C programming session 05C programming session 05
C programming session 05
 
C programming session 04
C programming session 04C programming session 04
C programming session 04
 
C programming session 03
C programming session 03C programming session 03
C programming session 03
 
C programming session 02
C programming session 02C programming session 02
C programming session 02
 
C programming session 01
C programming session 01C programming session 01
C programming session 01
 
C programming session 11
C programming session 11C programming session 11
C programming session 11
 
Global Warming Project
Global Warming ProjectGlobal Warming Project
Global Warming Project
 
DBMS Practical File
DBMS Practical FileDBMS Practical File
DBMS Practical File
 
Manufacturing Practice (MP) Training Project
Manufacturing Practice (MP) Training ProjectManufacturing Practice (MP) Training Project
Manufacturing Practice (MP) Training Project
 
BSNL Training Project
BSNL Training ProjectBSNL Training Project
BSNL Training Project
 
IT-314 MIS (Practicals)
IT-314 MIS (Practicals)IT-314 MIS (Practicals)
IT-314 MIS (Practicals)
 

Recently uploaded

4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptxiammrhaywood
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsManeerUddin
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 

Recently uploaded (20)

4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture hons
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 

IT- 328 Web Administration (Practicals)

  • 1. IITT College of Engineering Department of Information Technology PRACTICAL FILE WEB ADMINISTRATION SUBMITTED TO: - ER. SONIA MAM SUBMITTED BY:- DUSHMANTA NATH 81301113016 IT(6th Sem) IITT COLLEGE OF ENGINEERING
  • 2. S.NO NAME OF THE EXPERIMENT DATE SIGN 1) Design simple web pages using standard HTML tags like HEAD, TITLE, BODY. 2) Desogn HTML web pages which make the use of INPUT, META, SCRIPT, FORM, APPLET, BGSOUND, MAP. 3) Working with various attribute of standard HTML element. 4) Write code which does the form validation in variousINPUT element like TEXTFIELD, TEXTAREA, PASSWORD, SELECTION LIST etc. 5) Using databases access in ASP. 6) Writing server side program for web pages using ASP’s REQUEST, RESPONSE AND APPLICATION objects. 7) WRITING SERVER SIDE PROGRAMS FOR WEB PAGES USING ASP’S SESSION AND SERVER OBJECTS 8) CREATE A WEB PAGE USING PHP
  • 3. EXPERIMENT NO:-1 DESIGN A WEB PAGE USING STANDARD HTML TAGS LIKE HEAD, TITLE, BODY <html> <head> <meta charset="utf-8"><meta name="generator" content="CoffeeCupHTMLEditor(www.coffeecup.com)"> <meta name="created" content="Mon, 04 Apr 2011 10:08:53 GMT"> <meta name="description" content=""> <meta name="keywords" content=""> <title> </title> </head> <body bgcolor="yellow"> <h1 align="center"><font color="#00FF40"><u> WELCOME TO A WEBPAGE</u></font></h1> <h1 align="left"><font color="#FF8040"><em> MY INFORAMTION</em></font></h1> <h3>NAME:-<b><font color="#FFFFFF"> HIMANSHU GUPTA</font></b></h3> <h3>FATHER'S NAME:-<b><font color="#FFFFFF"> MR.NARENDRA KUMAR GUPTA</font></b></h3> <h3>DATE OF BIRTH:-<b><font color="#FFFFFF"> 13</font></b>/<b><font color="#FFFFFF"> 05</font></b>/<b><font color="#FFFFFF"> 1990</font></b></h3> <h3>SEX:-<b><font color="#FFFFFF"> MALE</font></b></h3> <h3>MARRTIAL STATUS:-<b><font color="#FFFFFF"> SINGLE</font></b></h3> <h3>COLLEGE:-<b><font color="#FFFFFF"> IITT COLLEGE OF ENGINEERING</font></b></h3> </body> </html>
  • 4. EXPERIMENT NO:-2 DESIGN A HTML WEB PAGE WHICH MAKE USE OF INPUT, META, SCRIPT, FORM, APPLET, BGSOUND, MAP <html> <head> <meta charset="utf-8"> <meta name="generator" content="CoffeeCup HTML Editor (www.coffeecup.com)"> <meta name="created" content="Wed, 20 Apr 2011 12:30:02 GMT"> <meta name="description" content=""> <meta name="keywords" content=""> <title> </title> </head> <script lang="javascript"></script> <body bgcolor="green"> <embed src="file//E:/mp3 songsYamlaPaglaDeewana (2010)02 - Charha De Rang [www.DJMaza.Com].mp3" hidden="true"autostart="true"></embed> <bgsoundsrc="file//E:/mp3 songsYamlaPaglaDeewana (2010)02 - Charha De Rang [www.DJMaza.Com].mp3"> <p align="center"><b>COLLEGE FORM</b></p> <form> <fieldset> <legend>BASIC DETAIL</legend> <b>NAME</b><input type="text" name="NAME" size="20"maxlength="30" /><br /><br /> <b>COURSE</b><input type="text" name="NAME" size="20"maxlength="30" /><br /><br /> <b>SEX</b><br /><br /> MALE<input type="radio" name="SEX" value="MALE" checked/> FEMALE<input type="radio" name="SEX" value="FEMALE" /><br /> <b>NATURE OF COURSE</b><br /> REGULAR<input type="checkbox" name="REGULAR" value="REGULAR" checked/>
  • 5. PRIVATE<input type="checkbox" name="PRIVATE" value="PRIVATE" /> </fieldset><br /> <fieldset> <legend>BASIC QUALIFICATION</legend> <tableBORDER=7> <tr> <th>QUALIFICATION</th> <th>PASSING YEAR</th> <th>PERCENTAGE</th> </tr> <tr> <th>HIGH SCHOOL</th> <th><input type="text" name="PASSING YEAR" size="20"maxlength="30"></th> <th><input type="text" name="PERCENTAGE" size="20"></th> </tr> <tr> <th>MATRIX 12<sup>TH</sup></th> <th><input type="text" name="PASSING YEAR" size="20"maxlength="30"></th> <th><input type="text" name="PERCENTAGE" size="20"></th> </tr> <tr> <th>GRADUATE</th> <th><input type="text" name="PASSING YEAR" size="20"maxlength="30"></th> <th><input type="text" name="PERCENTAGE" size="20"></th> </tr> </table> </fieldset><br /> <input type="file" name="resume" size="30" accept="image/jpeg"><br /> <input type="submit" value="submit" /> <input type="reset" value="reset"> </form> </body> </html>
  • 6. EXPERIMENT NO:-3 WORKING WITH VARIOUS ATTRIBUTES OF STANDARD HTML ELEMENT ATTRIBUTE:- It is the property of HTML tag that is specified in the opening angle brackets. It supplies additional information like color, size, home font style etc. to the browser about a tag. VARIOUS ATTRIBUTE OF STANDARD HTML ELEMENT:- 1) HEIGHT:- These attributes used to set the dimension of an image/marquee. The value from 1 to 100 percent. <html> <head> <title> </title> </head> <body> <imgsrc="file://E:/A.jpg"height="200" /> </body> </html> 2) COLOR:- It specifies font color is the format # RR GG BB using numbers. Color name also used. <html> <head> <title> </title> </head> <body> <FONT face="arial" size="+5" color="green">IITT</FONT> <FONT face="courier new" size="+4" color="red">COLLEGE</FONT> <FONT face="arial" size="+5" color="orange">OF</FONT> <FONT face="courier new" size="+4" color="blue">ENGINEERING</FONT> </body> </html>
  • 7. 3) SRC:- It defines the URL of the image. It identifies the specified image to use with its type. The commonly used image file type are GIF (Graphics Interchange Format), JPEG (Joint Photographic Expert Group) <html> <head> <title> </title> </head> <body> <imgsrc="FILE://E:/Window7.jpg"width="1300" /> </body> </html> 4) ALT:- It is used to include”pop-up text” for each hotspot. This text appears when a user moves the mouse pointer over any hotspot. <html> <head> <title> </title> </head> <body> <imgsrc="FILE://E:/Window7.jpg"width="1300"alt="image window 7" /> </body> </html>
  • 8. EXPERIMENT NO:-4 WRITE CODE WHICH DOES THE FORM VALIDATION IN VARIOUS INPUT ELEMENT LIKE TEXTFIELD, TEXTAREA, PASSWORD, SELECTION LIST ETC. <html> <head> <meta charset="utf-8"> <meta name="generator" content="CoffeeCup HTML Editor (www.coffeecup.com)"> <meta name="created" content="Mon, 04 Apr 2011 15:23:06 GMT"> <meta name="description" content=""> <meta name="keywords" content=""> <title> </title> </head> <body bgcolor="Fuchsia"> <p align="center"><b> STUDENT'S BASIC INFORMATION</b></p> <form> <input type="text" name="NAME" size="20"maxlength="30" />NAME<br /><br /> <input type="password" name="PASSWORD" size="20"maxlength="30" />PASSWORD<br /><br /> <b>SEX</b> <input type="radio" name="SEX" value="MALE" checked/>MALE<br /> <input type="radio" name="SEX" value="FEMALE" />FEMALE<br /> <p>COUNTRY</p> <select name="COUNTRY"> <option value="SELECT COUNTRY">SELECT COUNTRY</option> <option value="INDIA">INDIA</option> <option value="CHINA">CHINA</option> <option value="PAKISTAN">PAKISTAN</option> <option value="USA">USA</option> <option value="OTHER">OTHER</option> </select> <p>STATE</p> <select name="STATE"> <option value="SELECT STATE">SELECT STATE</option> <option value="UTTAR PRADESH">UTTAR PRADESH</option> <option value="MADHYA PRADESH">MADHYA PRADESH</option> <option value="HIMACHAL PRADESH">HIMACHAL PRADESH</option> <option value="PUNJAB">PUNJAB</option> <option value="OTHER">OTHER</option>
  • 9. </select> <textarea id="textarea1" cols="20" rows="2"> PLACE YOUR COMMENT</textarea>COMMENTS<br /> <input type="submit" value="submit" /> <input type="reset" value="reset"> </form> </body> </html>
  • 10. EXPERIMENT NO:-5 USING DATABASES ACCESS IN ASP 1) Create a database:- a) Open SQL SERVER 7.0 ENTERPRISE MANAGER(start(program(sql server 7.0(enterprise manager). b) Expand the enterprise manager tree, selecting the SQL server to which we would like to add the database, until we see the “database” node. c) Right click on the “database” node and select “databases”. d) On the “database properties” dialog box,enter the “15 second” in the “name” field. 2) Create an ODBC connection:- A) a) Open control panel(start(settings(control panel). b) Double click on the “data source(ODBC)” icons in the control panel. c) Select the “system DSN” tab on the “ODBC data source administrator”dialog box”. d) Click the “add” button. e) On the “create new data source” dialog box,highlight”sql server” and click”finish”. B) a) On the “create a new data source to sql server” dialog box. B )Enter “15 seconds” in the “name “ field. c) In the “description” field, enter a brief description for the DSN. I entered”15 seconds” sampledsn. d) From the “server” dropo down box, select the sql server to which you would like to connect. e) Click the “next” button.
  • 11. C) a) On the second “create a new data source to sql server” b) Select the “with sql server authentication using a login id and password entered by the user”. c) In the login id textbox, enter “sa”. d) Leave the “password” textbox empty. e) Click the “next” button. D) a) On the third “create a new data source to sql server” b) Select the “change the default databases to” checkbox and select”15 seconds “ from the accompanying select box. E) a) On the fourth“create a new data source to sql server” b) Click the “finish” button. F) a) On the “odbcmicrosftsql server setup”, do one of the following a.1)Click” test data source” button to ensure that the odbc connection has been created successfully. a.2) Click “ok” button to complete the ODBC DSN setup process.
  • 12. EXPERIMENT NO:-6 WRITING SERVER SIDE PROGRAMS FOR WEB PAGES USING ASP’S REQUEST AND RESPONSE OBJECTS. 1) REQUEST OBJECT:- <html> <head> <title> </title> </head> <body> <p> <b>You are browsing this site with:</b> <%Response.Write(Request.ServerVariables("http_user_agent"))%> </p> <p> <b>Your IP address is:</b> <%Response.Write(Request.ServerVariables("remote_addr"))%> </p> <p> <b>The DNS lookup of the IP address is:</b> <%Response.Write(Request.ServerVariables("remote_host"))%> </p> <p> <b>The method used to call the page:</b> <%Response.Write(Request.ServerVariables("request_method"))%> </p> <p> <b>The server's domain name:</b> <%Response.Write(Request.ServerVariables("server_name"))%> </p> <p>
  • 13. <b>The server's port:</b> <%Response.Write(Request.ServerVariables("server_port"))%> </p> <p> <b>The server's software:</b> <%Response.Write(Request.ServerVariables("server_software"))%> </p> </body> </html> 2) REPONSE OBJECT:- <html> <head> <title></title> </head> <body> <% If Response.IsClientConnected=true then Response.Write("The user is still connected!") else Response.Write("The user is not connected!") end if %> </body> </html>
  • 14. EXPERIMENT NO:-7 WRITING SERVER SIDE PROGRAMS FOR WEB PAGES USING ASP’S SESSION AND SERVEROBJECTS. 1) SESSION OBJECT:- <html> <head> <title> </title> </head> <body> <% response.write("<p>") response.write("The default LCID for this page is: " &Session.LCID& "<br />") response.write("The Date format for the above LCID is: " & date() & "<br />") response.write("The Currency format for the above LCID is: " &FormatCurrency(350)) response.write("</p>") Session.LCID=1036 response.write("<p>") response.write("The LCID is now changed to: " &Session.LCID& "<br />") response.write("The Date format for the above LCID is: " & date() & "<br />") response.write("The Currency format for the above LCID is: " &FormatCurrency(350)) response.write("</p>") Session.LCID = 3079 response.write("<p>") response.write("The LCID is now changed to: " &Session.LCID& "<br />") response.write("The Date format for the above LCID is: " & date() & "<br />") response.write("The Currency format for the above LCID is: " &FormatCurrency(350)) response.write("</p>") Session.LCID = 2057 response.write("<p>") response.write("The LCID is now changed to: " &Session.LCID& "<br />") response.write("The Date format for the above LCID is: " & date() & "<br />")
  • 15. response.write("The Currency format for the above LCID is: " &FormatCurrency(350)) response.write("</p>") %> </body> </html> 2) SERVER OBJECT:- <html> <body> <% Set fs = Server.CreateObject("Scripting.FileSystemObject") Set rs = fs.GetFile(Server.MapPath("demo_lastmodified.asp")) modified = rs.DateLastModified %> This file was last modified on: <%response.write(modified) Set rs = Nothing Set fs = Nothing %> </body> </html>
  • 16. EXPERIMENT NO:-8 CREATE A WEBPAGE USING PHP. SIMPLE HTML PAGE <html> <head> <title> </title> </head> <body> <form action="welcome.php" method="post"> NAME:-<input type="text" name="fname" /> AGE:-<input type="text" name="age" /> <input type="submit" /> </form> </body> </html> When we fill the form above and click on the submit button, the form data is sent to php file called as “welcome.php” <html> <head> <title> </title> </head> <body> Welcome <?php echo $_POST[“fname”];?><br/> You<?php echo $_POST[“age”];?<br/> </body> </html>