MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

43
Aspiration Webbers Wo rkshop Session # 1 Prepared & Pres ented By: Moataz Hesham Gamal El-Din MSTC’16

Transcript of MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Page 1: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Aspiration Webbers

Workshop

Session # 1

Prepared & Presented By:

Moataz Hesham Gamal El-Din

MSTC’16

Page 2: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Moataz Hesham Gamal El-Din • Fourth level student at Faculty of Computers and

Information-Cairo University.

• Major: IT. Track: Hardware.

previous experience

• Funky-Android development participant • CCNA-Cisco Certified.• RCS Hackathon-Orange Labs Cairo,2014.• IBM training security.• Startup Company.

Who Am I?

Page 3: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

انتم !من

Page 4: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Introduction toASP.NET

Page 5: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

• What is ASP.NET ?

• Web Application • Static Page Vs. Dynamic Page

• Introduction to HTML

Agenda

• Prerequisites

• HTML Syntax • Let’s Try

Page 6: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

What is ASP.NET ?

Active Server Pages dot NET

ASP.NET

Page 7: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Web Application?

Page 8: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Examples

Page 9: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Examples

Page 10: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Examples

Page 11: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Web Development Vs. Web Design

Page 12: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Web Development Or Web Design ?!

Page 13: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net
Page 14: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

• Flexibility

• Cross Platform

• Maintenance

Why Web application ?

Page 15: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Flexibility

Page 16: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Cross Platform

Page 17: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Maintenance

Page 18: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Static page VS.

Dynamic page

Page 19: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Prerequisites

Page 20: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Introduction to HTML

Page 21: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Hyper Text Markup Language

HTML

Introduction to HTML

Page 22: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Introduction to HTML

Frontend Backend

Page 23: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

HTML Vs. CSS

Page 24: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

HTML

Page 25: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

CSS

Page 26: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

HTML Syntax

• Tags : - i.e. <b></b>, <p></p> and<table> </table>

• Attribute:- i.e. <table border=“1”></table>

• Element:- i.e. <tag>content</tag>- i.e. <tag attribute=“’’ >content</tag>

Page 27: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

HTML Syntax

• Types of HTML Tags

• Container Tags: - Start tag & end tag i.e. <b>……</b>

• Empty Tags: - Start tag i.e. <img/>

Page 28: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

How To Start ?

Page 29: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

How To Start ?1- Open notepad : Right Click - > New -> Text Doc…

Page 30: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

How To Start ?2- Open notepad : Right Click - > Rename.

3- Change file extension

Page 31: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Important Tags <!DOCTYPE html> <html></html>

<head></head>

<body></body>

Page 32: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Title page: <title> tag

<!DOCTYPE html>

<html>

<head><title>First Web page</title></head>

<body></body>

</html>

Page 33: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

<!DOCTYPE html>

<html>

<head><title>First Web page</title></head>

<body><p> Welcome To MSTC'16</p></body>

</html>

Paragraphs:<p> tag <p>……. </p>

Page 34: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Input: <input> tag <input type=“ " ID=“ “/>

<!DOCTYPE html>

<html>

<head><title>First Web page</title></head>

<body>UserName: <input type="text" id="name"/>

Password: <input type="password" id=“pass"/>

</body></html>

Page 35: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

<!DOCTYPE html><html><head></head>

<body>

<button onclick="alert('Hello world!')">Click Me!</button> </body></html>

Buttons :<button> tag <button onClick=“” >Click Me</button>

Page 36: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

<!DOCTYPE html><html><head></head>

<body>

<button onclick="alert('Hello world!')">Click Me!</button> </body></html>

<button onClick=“” >Click Me</button>

Buttons :<button> tag

Page 37: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

<!DOCTYPE html><html><head></head>

<body>

<img src="E:\duck.jpg" width="300“ height="300"/> </body></html>

Images:<img> tag <img src="" width=“300“ height=“300“/>

Page 38: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

<!DOCTYPE html><html><head></head><body>

<a href="www.bing.com">visit address</a> </body></html>

Hyperlink: <a>tag <a href="www.google.com">Visit address</a>

Page 39: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Hyperlink: <a>tag

Page 40: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

LET’s Try !

Page 41: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net
Page 42: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

Any Questions ?

Page 43: MSTCCU'16 - Aspiration Webbers - Session 1 - Introduction To ASP.net

/moataz.hesham.5

Contact Me:

[email protected]