Chapter 2: Develop A One Page Web Application Liu, Jie Professor Department of Computer Science Western Oregon University

Slides:



Advertisements
Similar presentations
Welcome to Middleware Joseph Amrithraj
Advertisements

1 Unit 02. Visual Studio Visual Studio.NET Creating Projects Project Anatomy Using the IDE Code Snippets.
CSW131 Steven Battilana 1 CSW 131 Free MS Software (MSDNAA) MS Visual Web Developer W3 / Mozilla Code Validators Uploading Your Website Summer 2013 Prepared.
4.01 How Web Pages Work.
Let Use SVN(Subversion) Interaction Lab. Hyo-Geun Ahn
Web Forms and ASP.NET Programming Right from the Start with Visual Basic.NET 1/e 12.
11 ASP.NET Controls II Beginning ASP.NET 4.0 in C# 2010 Chapter 6.
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.
Web Development Using ASP.NET CA – 240 Kashif Jalal Welcome to week – 1.1 of…
Creating WordPress Websites. Creating a site on your computer Local server Local WordPress installation Setting Up Dreamweaver.
Web-Based Applications
Chapter 1: An Introduction To ASP.NET Web Programming
Progress Report 11/1/01 Matt Bridges. Overview Data collection and analysis tool for web site traffic Lets website administrators know who is on their.
Introduction to ASP.NET, Second Edition2 Chapter Objectives.
Introduction to ASP.NET
Chapter 3: Develop A Multi-Page Web Application Liu, Jie Professor Department of Computer Science Western Oregon University.
Tutorial -01. Objective In this session we will discuss about : 1.What is MVC? 2.Why MVC? 3.Advantages of MVC over ASP.NET 4.ASP.NET development models.
Chapter 9 Web Applications Copyright © 2011 by The McGraw-Hill Companies, Inc. All Rights Reserved. McGraw-Hill.
9-1 aslkjdhfalskhjfgalsdkfhalskdhjfglaskdhjflaskdhjfglaksjdhflakshflaksdhjfglaksjhflaksjhf.
Dr. Azeddine Chikh IS444: Modern tools for applications development.
CIS ASP Tim Brown. .html www .html www .html www.
Object-Oriented Application Development Using VB.NET 1 Chapter 12 Web Forms, HTML, and ASP.NET.
An Introduction to ASP.NET Ed Dunhill blogs.msdn.com/edunhill SLIDE7.
Beginning Web Site Development Module 1 – Dynamic Web Site Development Fundamentals of building dynamic Web sites with ASP.NET 2.0 and C# Version.
Programming with Microsoft Visual Basic 2012 Chapter 12: Web Applications.
1 HTML (Set Up Public Folder) Some material on these slides is taken directly from
CPSC203 Introduction to Computers Lab 69 By Jie Gao.
Advanced Web Forms with Databases Programming Right from the Start with Visual Basic.NET 1/e 13.
Creating Web Applications Using ASP.NET Chapter Microsoft Visual Basic.NET: Reloaded 1.
ASP.NET Web Application and Development Digital Media Department Unit Credit Value : 4 Essential Learning time : 120 hours Digital.
Web Programming: Client/Server Applications Server sends the web pages to the client. –built into Visual Studio for development purposes Client displays.
ITIS 1210 Introduction to Web-Based Information Systems Chapter 23 How Web Host Servers Work.
Websites 101 Technology Committee UPSOM. Web Class – Goals  Make a simple web page (or series of pages)  Upload that page to the internet  Feel comfortable.
CSCI 6962: Server-side Design and Programming Introduction to Active Server Pages.
McGraw-Hill © 2009 The McGraw-Hill Companies, Inc. All rights reserved. Programming with Visual Web Developer Chapter 9.
Validating, Promoting, & Publishing Your Web Site Writing For the Web The Internet Writer’s Handbook 2/e.
How to upload files to Altervista Overview:
NUNIT - Testing your Application. NUnit Tool – Used for Test driven development Lets create a sample banking class named account which supports operations.
Introduction to ASP.NET1. 2 Web applications in general Web applications are divided into two parts –The server part –The client part The server part.
C# AND ASP.NET What will I do in this course?. MAJOR TOPICS Learn to program in the C# language with the Visual Studio IDE (Interactive Development Environment)
Praveen Reddy Masters Defense Major Professor: Dr. Mitchell L. Neilsen.
Videos. Adding Videos to a Web Page Videos can make our pages more interesting and engaging. Most video-hosting services, such as YouTube, will provide.
Website Development & Management Going Live with Web Pages (a) CIT Fall Instructor: John Seydel, Ph.D.
Christopher M. Pascucci.NET Programming CodeBehind.
The Problem of State. We will look at… Sometimes web development is just plain weird! Internet / World Wide Web Aspects of their operation The role of.
Form Processing Week Four. Form Processing Concepts The principal tool used to process Web forms stored on UNIX servers is a CGI (Common Gateway Interface)
COMP 2923 A2 Website Development 101 Danny Silver JSOCS, Acadia University.
PROGRAMMING IN VISUAL BASIC.NET CREATING YOUR FIRST WEB APPLICATION Bilal Munir Mughal 1 Chapter-3.
Configuring and Deploying Web Applications Lesson 7.
Web Development in Microsoft Visual Studio 2013 / 2015.
1 More About HTML Images and Links. 22 Objectives You will be able to Include images in your HTML page. Create links to other pages on your HTML page.
Chapter 27 Getting “Web-ified” (Web Applications) Clearly Visual Basic: Programming with Visual Basic nd Edition.
1111 Creating HTML Programatically Objectives You will be able to Invoke C# code on the server from an ASP.NET page. Write C# code to create HTML.
111 State Management Beginning ASP.NET in C# and VB Chapter 4 Pages
CSCI 3100 Tutorial 5 Bootstrap & Git ZENG, Jichuan Department of Computer Science and Engineering The Chinese University of Hong.
ASP.NET 2.0 Mohammed Abdelhadi Developer.NET Evangelist Microsoft Corporation.
Chapter 2 Creating Website with Web Forms. Objectives Understand the different project types and templates when building ASP.NET web sites. The different.
Computing with C# and the .NET Framework
Web Concepts Lesson 2 ITBS2203 E-Commerce for IT.
Department of Computer Science
Active Server Pages Computer Science 40S.
Web Forms, HTML, and ASP.NET
Videos.
Jie Liu, Ph.D. Professor and Chair Department of Computer Science
Application Deployment
ما هي خدمة بروتوكول نقل الملفات؟
Videos.
Chapter 9 Programming with Web Forms
virtual techdays INDIA │ November 2010
Snippet Engine as a Database Server
Presentation transcript:

Chapter 2: Develop A One Page Web Application Liu, Jie Professor Department of Computer Science Western Oregon University

Start A New Project  File  New  Website Three different locations  File system – store anywhere  HTTP – use your IIS server  FTP – to a file server directory  A solution file is store at: My Documents\Visual Studio\Projects  To change to where the solution file is stored use Tool  Option

The IDE

Page Event  Page_Init First event, before the view state is restored  Page_Load All the controls are initialized and view state is restored This is the event to add logics at the page level  Page_PreRender The server is done with the page and ready to send the HTML file to the browser

Summary  Start a new project  Start a page  Visual Studio – the IDE  Add controls  Add code to events Event driven concept Events for controls Events for a page  PostBack – the concept