Page Redirection When you click a URL to reach to a page X but internally you are directed to another page Y that simply happens because of page re- direction.

Slides:



Advertisements
Similar presentations
Chapter 2 The Internet and World Wide Web. The Internet What are some services found on the Internet? p. 50 Fig. 2-1 Next.
Advertisements

Introduction to the Internet
the Internet browser of choiceVidor ISD What is Internet Explorer? a Web browser* produced by the Microsoft Corporation *a software application used.
Reinventing using REST. Anything addressable by a URI is called a resource GET, PUT, POST, DELETE WebDAV (MOVE, LOCK)
WEB DESIGN TABLES, PAGE LAYOUT AND FORMS. Page Layout Page Layout is an important part of web design Why do you think your page layout is important?
AJAX Presented by: Dickson Fu Dimas Ariawan Niels Andreassen Ryan Dial Jordan Nielson CMPUT 410 University of Alberta 2006.
1 Owais Mohammad Haq Department of Computer Science Eastern Michigan University April, 2005 Java Script.
Computers Going Online Internet Browsers Browsers retrieve and view Internet-based information interact with servers download and upload information ©
Computer Science 103 Chapter 4 Advanced JavaScript.
JavaScript, Third Edition
Introduction 2: Internet, Intranet, and Extranet J394 – Perancangan Situs Web Program Sudi Manajemen Universitas Bina Nusantara.
Web Publishing TutorialIS for Management1 Tutorial: Web Publishing.
Introduction to JavaScript. Aim To enable you to write you first JavaScript.
Meta Tags What are Meta Tags And How Are They Best Used?
Internet. Internet is Is a Global network Computers connected together all over that world. Grew out of American military.
4.1 JavaScript Introduction
1 3 Web Proxies Web Protocols and Practice. 2 Topics Web Protocols and Practice WEB PROXIES  Web Proxy Definition  Three of the Most Common Intermediaries.
Introduction to JavaScript Dr. John P. Abraham University of Texas – Pan American.
Lecturer: Ghadah Aldehim
Internet Vocabulary 1-21 State Test Vocabulary. Address address, Internet address, and web address. A code or series of letters numbers and/or.
More JavaScript Examples Please use speaker notes for additional information!
Web Programming: Client/Server Applications Server sends the web pages to the client. –built into Visual Studio for development purposes Client displays.
HOW WEB SERVER WORKS? By- PUSHPENDU MONDAL RAJAT CHAUHAN RAHUL YADAV RANJIT MEENA RAHUL TYAGI.
Client Scripting1 Internet Systems Design. Client Scripting2 n “A scripting language is a programming language that is used to manipulate, customize,
Introduction To Internet
Lesson13. JavaScript JavaScript is an interpreted language, designed to function within a web browser. It can also be used on the server.
Validating, Promoting, & Publishing Your Web Site Writing For the Web The Internet Writer’s Handbook 2/e.
Client-Side Scripting JavaScript.  produced by Netscape for use within HTML Web pages.  built into all the major modern browsers. properties  lightweight,
MIS 424 Professor Sandvig. Overview  Why Analytics?  Two major approaches:  Server logs  Google Analytics.
Chapter 5: Windows and Frames
1 UNIT 13 The World Wide Web Lecturer: Kholood Baselm.
Introduction to JavaScript CS101 Introduction to Computing.
Sahar Mosleh California State University San MarcosPage 1 JavaScript Basic.
Creating Web Documents catch-up JavaScript slide show tools redirection.
Why Navigation is So Important in Your Website Design.
By Tharith Sriv. To write a web page you use: HHTML (HyperText Markup Language), AASP (Active Server Page), PPHP (HyperText Preprocessor), JJavaScript,
Javascript JavaScript is what is called a client-side scripting language:  a programming language that runs inside an Internet browser (a browser is also.
Vocabulary 3 Internet Vocabulary. internet A system that connects billions of computers around the world.
Family Connection Collaborative Webs A Tool for Creating and Managing Web sites.
Project Two Adding Scrolling Messages! Page 2.4 to 2.18 Today’s Agenda Look at scrolling message coding. Create a web page with a text box. Create a web.
Vocabulary 2 Internet Vocabulary. online On the internet.
CSRF Attacks Daniel Chen 11/18/15. What is CSRF?  Cross Site Request Forgery (Sea-Surf)  AKA XSRF/ One Click / Sidejacking / Session Riding  Exploits.
JavaScript and Ajax (Internet Background) Week 1 Web site:
Learning Aim C.  In this section we will look at some simple client-side scripts, browser compatibility, exporting and compressing and suitable file.
Unit-6 Handling Sessions and Cookies. Concept of Session Session values are store in server side not in user’s machine. A session is available as long.
Introduction to JavaScript LIS390W1A Web Technologies and Techniques 24 Oct M. Cameron Jones.
1 CSC160 Chapter 1: Introduction to JavaScript Chapter 2: Placing JavaScript in an HTML File.
Lecture : Kholoud Eid University Majmaah 13 –
THE ART OF REDIRECTION PUTTING MOBILE DEVICES WHERE YOU WANT THEM JASON BENGTSON, MLIS, AHIP EMERGING TECHNOLOGIES/ R&D LIBRARIAN UNIVERSITY OF NEW MEXICO.
1 Using jQuery JavaScript & jQuery the missing manual (Second Edition)
Web Programming Java Script-Introduction. What is Javascript? JavaScript is a scripting language using for the Web. JavaScript is a programming language.
Chapter 13: DHTML: Object Model and Collections CIS 275—Web Application Development for Business I.
Javascript Javascript The JavaScript Programming Language – Scripting Languages Executed by an interpreter contained within.
Internet Search What you need to know!.
WEBSITE BASICS E-Commerce.
Putting Mobile Devices Where You want them
Web Development & Design Foundations with HTML5 7th Edition
Some Common Terms The Internet is a network of computers spanning the globe. It is also called the World Wide Web. World Wide Web It is a collection of.
Back to Basics: Internet Explorer
Introduction to JavaScript
Introduction to Client-Side programming using JavaScript
Dynamic Web Pages Jin Wu INF 385E Information Architecture
Maintaining Your Site Module 8: Web Publishing and Maintenance
Introduction to JavaScript
Tutorial 10: Programming with javascript
Use an Internet Browser
Client-Server Model: Requesting a Web Page
Internet Vocabulary Beth Felton McKelvey.
Introduction to JavaScript
Who is Using your webSite?
Presentation transcript:

Page Redirection When you click a URL to reach to a page X but internally you are directed to another page Y that simply happens because of page re- direction. This concept is different from JavaScript Page Refresh.

Reasons: Page Redirection There could be various reasons why you would like to redirect from original page. some reasons are listing down: 1.You did not like the name of your domain and you are moving to a new one. Same time you want to direct your all visitors to new site. In such case you can maintain your old domain but put a single page with a page re- direction so that your all old domain visitors can come to your new domain.

Reasons: Page Redirection 2.You have build-up various pages based on browser versions or their names or may be based on different countries, then instead of using your server side page redirection you can use client side page redirection to land your users on appropriate page.

Reasons: Page Redirection 3.The Search Engines may have already indexed your pages. But while moving to another domain then you would not like to lose your visitors coming through search engines. So you can use client side page redirection. But keep in mind this should not be done to make search engine a fool otherwise this could get your web site banned.

How Page Re-direction works ? Example 1: This is very simple to do a page redirect using JavaScript at client side. To redirect your site visitors to a new page, you just need to add a line in your head section as follows: window.location= " ;

How Page Re-direction works ? Example 2: You can show an appropriate message to your site visitors before redirecting them to a new page. This would need a bit time delay to load a new page. Following is the simple example to implement the same: function Redirect() { window.location = " } document.write ("You will be redirected to main page in 10 sec."); setTimeout ('Redirect()', 10000);

How Page Re-direction works ? Example 3: Following is the example to redirect site visitors on different pages based on their browsers : var browsername = navigator.appName; if( browsername == "Netscape" ) { window.location=" } else if ( browsername =="Microsoft Internet Explorer") { window.location=" } else {window.location=" }