web design & programming

29
Web Design & Programming ASP Mr. Baha & Dr.Husam Osta 2014

Upload: yoland

Post on 14-Feb-2016

17 views

Category:

Documents


0 download

DESCRIPTION

Web Design & Programming. ASP Mr. Baha & Dr.Husam Osta 2014. Outlines. What is ASP? Internet Information Services How Does ASP Differ from HTML? What can ASP do for you? ASP Basic Syntax Rules ……. What is ASP?. ASP stands for  Active Server  Pages , or classical ASP - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Web Design & Programming

Web Design & Programming

ASPMr. Baha & Dr.Husam Osta

2014

Page 2: Web Design & Programming

Outlines What is ASP? Internet Information Services How Does ASP Differ from HTML? What can ASP do for you? ASP Basic Syntax Rules

……..

Page 3: Web Design & Programming

What is ASP? ASP stands for Active Server Pages ,or classical ASP

◦ ASP is Microsoft's first server side scripting engine ◦ It enables you to make dynamic and interactive web pages.◦ ASP is a program that runs inside

Internet Information Services (IIS)

An ASP file can contain ◦ Text, HTML, XML, and scripts

Scripts in an ASP file are executed on the server The default scripting language used for ASP is VBScript, or

others like JScript◦ An ASP file has the file extension “.asp”

Page 4: Web Design & Programming

Internet Information Services (IIS)

Internet Information Services is an extensible web server created by Microsoft for use with Windows family. 

IIS supports:◦ HTTP, HTTPS, FTP, FTPS, SMTP and NNTP.

It is an integral part of Windows family since Windows NT 4.0, though it may be absent from some edition (e.g. Windows XP Home edition).

IIS is not turned on by default when Windows is installed.

Page 5: Web Design & Programming

How Does ASP Differ from HTML?

When a browser requests an HTML file1. the server returns the file

Page 6: Web Design & Programming

How Does ASP Differ from HTML? When a browser requests an ASP file

1. IIS passes the request to the ASP engine. 2. The ASP engine reads the ASP file, line by line,

and executes the scripts in the file. 3. Finally, the ASP file is returned to the browser as

plain HTML

Page 7: Web Design & Programming

What can ASP do for you?1. Dynamically edit, change, or add any content of

a Web page2. Respond to user queries or data submitted from

HTML forms3. Access any data or databases and return the

results to a browser4. Customize a Web page to make it more useful

for individual users

Page 8: Web Design & Programming

Advantages of ASP …

1. The advantages over other technologies, are 1. Simplicity2. speed

2. Provide security since the code cannot be viewed from the browser

3. Clever ASP programming can minimize the network traffic

Page 9: Web Design & Programming

ASP.Net Technology It is a unified Web development model It includes services necessary to build

enterprise-class web applications with minimum of coding.

This technology is developed under the .Net framework that is provided in the visual studio platform

Page 10: Web Design & Programming

ASP Basic Syntax Rules An ASP file normally contains HTML tags, just like an

HTML file. An ASP file can also contain server scripts,

surrounded by the delimiters <% and %>. The command response.write is used to write output

to a browser.

Example<html>

<body><% response.write(“My first ASP script!”) %></body>

</html>

Page 11: Web Design & Programming

Your first ASP page

ASP

HLTML

Page 12: Web Design & Programming

Working with time and dates

Page 13: Web Design & Programming

FormatDateTime(Date[, NamedFormat]) The NamedFormat argument may take the

following values:◦ vbLongDate◦ vbShortDate◦ vbLongTime◦ vbShortTime

Formatting time and dates

Page 14: Web Design & Programming

YearReturns the current year from a date - with today's date, it returns: 2014

MonthReturns the current month from a date - with today's date, it returns: 1

DayReturns the current day of the month from a date - with today's date, it returns:29

HourReturns the current hour from a time - with the current time, it returns: 8

MinuteReturns the current minute from a time - with the current time, it returns: 10

SecondReturns the current second from a time - with the current time, it returns: 28

Functions for time and dates

Page 15: Web Design & Programming

Weekday Returns the current day of the week from a date - with today's date, it returns: 3NOTE: this function has to be called with the argument "the first day of the week" (eg. Monday or Sunday) as well- like this: Weekday(Now,vbMonday)

Weekday function

Page 16: Web Design & Programming

ASP Variables Variables are used to store information. The example demonstrates

◦ how to declare a variable, assign a value to it, and use the value in a text.

<!DOCTYPE html><html><body>

<%dim namename="Donald Duck"response.write("My name is: " & name)%>

</body></html>

Page 17: Web Design & Programming

For Initializion To Expressions Statement Next

Loops “For loop”

Page 18: Web Design & Programming

Loops “For loop example”For Initializion To Expressions Statement Next

Page 19: Web Design & Programming

Do {While | Until} condition Statement Loop

OR

Do Statement Loop {While | Until} condition

Do ... LoopDo Statement Loop {While | Until} condition

Page 20: Web Design & Programming

Do .. Loop example

Page 21: Web Design & Programming

Output

Page 22: Web Design & Programming

Loops within loops

Page 23: Web Design & Programming

If condition Then statement Else statement End If

Conditions : If ..Then..Else

Page 24: Web Design & Programming

= Equals< Less than> Greater than<= Less than or equal to> = Greater than or equal to<> Not equal toANDORNOT

Logical Operators

Page 25: Web Design & Programming

Example “AND”

Page 26: Web Design & Programming

If ... Then ... ElseIf ... Else

Page 27: Web Design & Programming

Select Case Expression Case 1 statement Case 2 statement Case Else statement End Select

Select ... Case

Page 28: Web Design & Programming

Comments

Page 29: Web Design & Programming

http://html.net/tutorials/asp/lesson8.asp

Arrays