Advanced Tools for Web Designing

23
Feb 7, 20 22 DHTML

description

more visit softpediaz.blogspot.com

Transcript of Advanced Tools for Web Designing

Page 1: Advanced Tools for Web Designing

Apr 8, 2023

DHTML

Page 2: Advanced Tools for Web Designing

2

Differentiate Between HTML and DHTML

1. HTML HTML means Hyper Text Markup Language. It is the basic tool for web page creation. Using HTML we can design only static web page. 2. DHTML DHTML means Dynamic Hyper Text Markup

Language DHTML makes Web Page Dynamic. DHTML makes Web Page interactive. DHTML uses existing HTML Tags with VB Script

or Java Script.

Page 3: Advanced Tools for Web Designing

Apr 8, 2023

XML

Extensible Markup Language

Page 4: Advanced Tools for Web Designing

4

Q. Write two important application of XML in web development

XML allows us to define new Tags. We can define our own Tags Business Partners use XML to exchange data with each other in

new and easier way. E-Business related information such as

Pricing Inventory Transactions Are represented in XML and transferred over internet.

XML provides the basis for a wide variety of industry and specified such as Math XML EbXML VXML

Page 5: Advanced Tools for Web Designing

Apr 8, 2023

Scripting Languages

1. JavaScript

2. VB Script

Page 6: Advanced Tools for Web Designing

6

Differentiate Java Script and VB Script

Java Script Java script is Platform independent. Java script work on any operating systems. Java Script adds interactivity to HTML pages. Java Script provides facility to include programming in HTML

documents. Using Java Script, we can perform

Functions like decision making Accessing data Answering users query. Collecting user informations Storing user informations

Page 7: Advanced Tools for Web Designing

7

VB Script

VB Script is a Scripting Language. VB Script is simple Visual Basic Programs

embedded in HTML pages. VB Script makes the web page Active. It is useful for handling forms. VB Script is not platform independent. It provides greater programming flexibility for both

Client side Server side.

Page 8: Advanced Tools for Web Designing

8

ASP, JSP, PERL

Page 9: Advanced Tools for Web Designing

9

ASP, JSP, PERL

Q. The higher secondary examination result of your school is available on your school web site. On entering the Reg.No, the result of that particular student displayed as a web page.

Discuss any two technologies in addition to HTML required to implement this web site.

Page 10: Advanced Tools for Web Designing

10

ASP

ASP Stands for Active Server Page Active Server Pages are web pages, which are embeded

with Dynamic contents. In ASP, the script component execute in server side and The effect is send back to client machine. The result will be displayed in the user window using

HTML Tags send by server. Real Time communication exists between client and

server. ASP applications are small and can be modified without

affecting server function.

Page 11: Advanced Tools for Web Designing

11

JSP JSP Stands for Java Script Page. JSP are web pages contain server

side scripts. JSP allows web designers easy to

develop and Manufacture dynamic web

pages.

Page 12: Advanced Tools for Web Designing

12

PERL PERL Means Practical Extraction and Report Language. PERL is used for writing CGI scripts. PERL is helpful for

System Management and System Administration task.

PERL is used for programming WWW electronic forms.

PERL act as a gateway between, System Data Base and Users.

Page 13: Advanced Tools for Web Designing

13

Forms and JavaScript The JavaScript language can be used to make pages that “do

something” You can use JavaScript to write complete programs, but... Usually you just use snippets of JavaScript here and there throughout your

Web page JavaScript code snippets can be attached to various form elements

For example, you might want to check that a zipcode field contains a 5-digit integer before you send that information to the server

Microsoft sometimes calls JavaScript “active scripting” HTML forms can be used without JavaScript, and JavaScript can

be used without HTML forms, but they work well together JavaScript for HTML is covered in a separate lecture

Page 14: Advanced Tools for Web Designing

14

The <form> tag

The <form arguments> ... </form> tag encloses form elements (and probably other HTML as well)

The arguments to form tell what to do with the user input action="url" (required)

Specifies where to send the data when the Submit button is clicked method="get" (default)

Form data is sent as a URL with ?form_data info appended to the end

Can be used only if data is all ASCII and not more than 100 characters method="post"

Form data is sent in the body of the URL request Cannot be bookmarked by most browsers

target="target" Tells where to open the page sent as a result of the request target= _blank means open in a new window target= _top means use the same window

Page 15: Advanced Tools for Web Designing

15

The <input> tag

Most, but not all, form elements use the input tag, with a type="..." argument to tell which kind of element it is

type can be text, checkbox, radio, password, hidden, submit, reset, button, file, or image

Other common input tag arguments include: name: the name of the element value: the “value” of the element; used in different ways for different

values of type readonly: the value cannot be changed disabled: the user can’t do anything with this element Other arguments are defined for the input tag but have meaning only for

certain values of type

Page 16: Advanced Tools for Web Designing

16

Text input

A text field: <input type="text" name="textfield" value="with an initial value">

A multi-line text field <textarea name="textarea" cols="24" rows="2">Hello</textarea>

A password field: <input type="password" name="textfield3" value="secret">

• Note that two of these use the input tag, but one uses textarea

Page 17: Advanced Tools for Web Designing

17

Buttons

A submit button: <input type="submit" name="Submit" value="Submit">

A reset button: <input type="reset" name="Submit2" value="Reset">

A plain button: <input type="button" name="Submit3" value="Push Me">

submit: send data

reset: restore all form elements to their initial state

button: take some action as specified by JavaScript• Note that the type is input, not “button”

Page 18: Advanced Tools for Web Designing

18

Checkboxes A checkbox:

<input type="checkbox" name="checkbox” value="checkbox" checked>

type: "checkbox" name: used to reference this form element from

JavaScript value: value to be returned when element is checked Note that there is no text associated with the checkbox—

you have to supply text in the surrounding HTML

Page 19: Advanced Tools for Web Designing

19

Radio buttons

Radio buttons:<br><input type="radio" name="radiobutton" value="myValue1">male<br><input type="radio" name="radiobutton" value="myValue2" checked>female

If two or more radio buttons have the same name, the user can only select one of them at a time

This is how you make a radio button “group”

If you ask for the value of that name, you will get the value specified for the selected radio button

As with checkboxes, radio buttons do not contain any text

Page 20: Advanced Tools for Web Designing

20

Drop-down menu or list

A menu or list:<select name="select"> <option value="red">red</option> <option value="green">green</option> <option value="BLUE">blue</option></select>

Additional arguments: size: the number of items visible in the list (default is "1") multiple: if set to "true", any number of items may be selected

(default is "false")

Page 21: Advanced Tools for Web Designing

21

Hidden fields <input type="hidden" name="hiddenField" value="nyah">

&lt;-- right there, don't you see it?

What good is this? All input fields are sent back to the server, including hidden fields This is a way to include information that the user doesn’t need to see (or

that you don’t want her to see) The value of a hidden field can be set programmatically (by JavaScript)

before the form is submitted

Page 22: Advanced Tools for Web Designing

22

A complete example

<html><head><title>Get Identity</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head><body><p><b>Who are you?</b></p><form method="post" action=""> <p>Name: <input type="text" name="textfield"> </p> <p>Gender: <input type="radio" name="gender" value="m">Male <input type="radio" name="gender" value="f">Female</p> </form></body></html>

Page 23: Advanced Tools for Web Designing

23

The End