11 Getting Started with ASP.NET Beginning ASP.NET 4.0 in C# 2010 Chapters 5 and 6.

Slides:



Advertisements
Similar presentations
Web Forms and ASP.NET Programming Right from the Start with Visual Basic.NET 1/e 12.
Advertisements

11 ASP.NET Controls II Beginning ASP.NET 4.0 in C# 2010 Chapter 6.
Web Development in Microsoft Visual Studio Slide 2 Lecture Overview Introduce Visual Studio 2013 Create a first ASP.NET application.
ASP Tutorial. What is ASP? ASP (Active Server Pages) is a Microsoft technology that enables you to make dynamic and interactive web pages. –ASP usually.
1 Chapter 20 — Creating Web Projects Microsoft Visual Basic.NET, Introduction to Programming.
11 ASP.NET Controls Beginning ASP.NET 4.0 in C# 2010 Chapter 6.
Joe Hummel, PhD Dept of Mathematics and Computer Science Lake Forest College Lecture 8: WebForms — Web-based.
ASP.Net, Web Forms and Web Controls 1 Outline Introduction Simple HTTP Transaction System Architecture Creating and Running a Simple Web Form Example Web.
Building an ASP.NET Web Application Dr. Awad Khalil Computer Science & Engineering Department AUC.
Tutorial: Introduction to ASP.NET Internet Technologies and Web Application 4 th February 2010.
1 CS 3870/CS 5870 Static and Dynamic Web Pages ASP.NET and IIS.
Copyright 2007, Information Builders. Slide 1 Maintain & JavaScript: Two Great Tools that Work Great Together Mark Derwin and Mark Rawls Information Builders.
JavaScript & jQuery the missing manual Chapter 11
Hello World In C++ and Microsoft Visual C++. Directions to begin a project 1. Go to All Programs 2. Open Visual Studio C++ 3. Click on New Project 4.
1 CS 3870/CS 5870 Static and Dynamic Web Pages ASP.NET and IIS.
Joe Hummel, PhD Dept of Mathematics and Computer Science Lake Forest College
Basics of Web Databases With the advent of Web database technology, Web pages are no longer static, but dynamic with connection to a back-end database.
Programming with Microsoft Visual Basic 2012 Chapter 12: Web Applications.
Introduction to Graphical User Interfaces. Objectives * Students should understand what a procedural program is. * Students should understand what an.
IT 211 Project Integration and Deployment Lab #11.
IE 411/511: Visual Programming for Industrial Applications
E-Commerce: Introduction to Web Development 1 Dr. Lawrence West, Management Dept., University of Central Florida Topics What is a Web.
Web Programming: Client/Server Applications Server sends the web pages to the client. –built into Visual Studio for development purposes Client displays.
Intro to MFC. Open VS and create new project 1)Open MS Visual Studio 2008 Professional (It must be the Professional Edition, the Express Edition will.
Microsoft Visual Basic 2008 CHAPTER SEVEN Creating Web Applications.
Chapter 3: Using GUI Objects and the Visual Studio IDE.
11 Web Services. 22 Objectives You will be able to Say what a web service is. Write and deploy a simple web service. Test a simple web service. Write.
CSCI 6962: Server-side Design and Programming Introduction to Active Server Pages.
1 Data Bound Controls II Chapter Objectives You will be able to Use a Data Source control to get data from a SQL database and make it available.
Tutorial 7 Creating Forms. Objectives Session 7.1 – Create an HTML form – Insert fields for text – Add labels for form elements – Create radio buttons.
Internet Technologies and Web Application Web Services With ASP.NET Tutorial: Introduction to.
Murach’s ASP.NET 4.0/VB, C1© 2006, Mike Murach & Associates, Inc.Slide 1.
Microsoft Visual Basic 2005 CHAPTER 7 Creating Web Applications.
Introduction to ASP.NET T.Ahlam Algharasi. The Visual Studio IDE Start page 2.
Using Microsoft Visual Studio 2005 Original by Suma Rao Revised by John G. McMahon ( 9/6/2008 )
Web Development in Microsoft Visual Studio Slide 2 Lecture Overview How to create a first ASP.NET application.
Introduction to Web Services. Examples Using a Web Service Creating a new Web Service.
Chapter 2 – Introduction to the Visual Studio .NET IDE
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved Bookstore Application: Middle Tier Introducing Code-Behind Files, Session State.
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved Bookstore Web Application: Client Tier Introducing Web Controls.
11 ASP.NET Server Controls Beginning ASP.NET in C# and VB Chapter 4.
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
Chapter 27 Getting “Web-ified” (Web Applications) Clearly Visual Basic: Programming with Visual Basic nd Edition.
1111 Creating ASPX Controls Programatically Objectives You will be able to Dynamically add controls to a page. Dynamically alter properties of controls.
11 Getting Started with ASP.NET Beginning ASP.NET in C# and VB Chapters 1 and 2.
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.
1 Project 4 Address Lookup. Project 4 Write an ASP.NET app that permits users to retrieve addresses from a potentially large list of addresses. There.
1111 Master Pages Beginning ASP.NET in C# and VB Chapter 6.
11 User Controls Beginning ASP.NET in C# and VB Chapter 8.
11 Project 2 Temperature Conversion. 22 Project 2: Temperature Conversion Write an ASP.NET Web Forms app to convert temperatures from Fahrenheit to Celsius.
IE 411/511: Visual Programming for Industrial Applications Lecture Notes #2 Introduction to the Visual Basic Express 2010 Integrated Development Environment.
Creating a Web Site Creating a new Web site Defining and using folders Creating and editing Web pages Viewing pages in a Web browser.
Easy Site Navigation Getting organized, staying organized Creating custom site-navigation controls Using Menu, TreeView, and SiteMenuPath controls Make.
Beginning ASP.NET in C# and VB Chapter 9
 2002 Prentice Hall. All rights reserved. 1 Introduction to the Visual Studio.NET IDE Outline Introduction Visual Studio.NET Integrated Development Environment.
Microsoft Visual C# 2010 Fourth Edition Chapter 3 Using GUI Objects and the Visual Studio IDE.
1 Using jQuery JavaScript & jQuery the missing manual (Second Edition)
 Lecture  Website language: ASP.net  Book name Beginning ASP.NET 4 in C# and VB 2.
111 State Management Beginning ASP.NET in C# and VB Chapter 4 Pages
Chapter 1 Getting Started with ASP.NET Objectives Why ASP? To get familiar with our IDE (Integrated Development Environment ), Visual Studio. Understand.
MIS 3200 – C# (C Sharp)
ASP.NET Forms.
ASP.NET Web Controls.
Chapter 2 – Introduction to the Visual Studio .NET IDE
Visual programming Chapter 1: Introduction
Active Server Pages ASP.Net
Web Development in Microsoft Visual Studio 2013
ASP.NET.
Programming with Microsoft Visual Basic 2008 Fourth Edition
Presentation transcript:

11 Getting Started with ASP.NET Beginning ASP.NET 4.0 in C# 2010 Chapters 5 and 6

22 Objectives You will be able to Create a very simple web application in Visual Studio Dynamically alter contents of a page. Get and process text input from the user. Understand the relationship between what you write in Visual Studio and what the browser receives from the server.

33 ASP.NET ASP.NET permits us to dynamically create content for a web page using code that runs on the server. Start with a file of text similar to HTML. Can include real HTML. We can modify any properties of page elements at run time. Server translates this pseudo-HTML into real HTML which it sends to the browser. We can provide code to respond to events such as button clicks.

44 Hello, World! Let’s start with a “Hello, World” ASP.NET application. Get past the startup hurdles before trying to write real web application code. We will use Visual Studio’s built in web server to test and demonstrate our web application code.

55 Creating a New Web App In Visual Studio 2010 File > New Web Site (NOT New project)

6 Empty Web Site Web Site Name Check this setting

7 View Solution Explorer

88 The Solution Explorer

9 A New “Empty” Web Site Visual Studio is ambiguous about “project” There is no project file such as you might have seen for Visual Studio Windows programs.

10 A New “Empty” Web Site There is a pair of “solution” files in the Projects directory.

11 The Solution Files Hello.sln holds Visual Studio settings associated with this web site (project). You can look at it with WordPad. Hello.suo is a binary file These files are used only by Visual Studio. Not part of the web app. Not deployed to a web server. Both of these files can be reproduced at any time if they are deleted. Can generally be ignored.

12 The Web Site Directory C:\Documents and Settings\Rollins\My Documents\ Visual Studio 2010\WebSites\Hello These files are the web app. Will be deployed to the web server. Will be in a virtual directory on the Internet.

13 The web.config File Double click to open in VS editor

14 The web.config File Every ASP.NET web app has an XML configuration file called web.config. ASCII text Holds information used by the server and (possibly) by application code. See page 163 and following. Can be edited with any plain text editor. Even on the server We will learn more about config files throughout the course. Can ignore for now.

15 Initial web.config

16 Adding a Web Page

17 Add File Default.aspx Note file name. This is the usual starting page for an ASP.NET web site.

18 Default.aspx

19 Default.aspx.cs Visual Studio has also created the “code behind” file, Default.aspx.cs

20 Default.aspx.cs The initial file doesn’t do anything.

21 The Design View A WYSIWYG editor for web pages. View > Toolbox

22 The Design Surface Click here to see Source view.

23 Source View Click here to return to Design view.

24 Design View Click inside Div box. Then double click on Label in Toolbox.

25 Add a Label Right click on Label. Select Properties. Set Text property to “Hello, World!”

26 Label Properties Click here to view in browser.

27 Debugging Not Enabled Click OK.

28 Page in Chrome

29 What We Wrote

30 What the Browser Received

31 What’s happening here? When a browser requests an aspx page from an IIS (Microsoft) web server, IIS retrieves the file from the virtual directory and passes it to ASPX for processing.

32 What’s happening here? ASPX translated what we wrote into what the browser saw. Using the visual designer, we wrote the HTML-like code shown on a previous slide. Visual Studio’s built-in IIS web server translated that code into the real HTML code that the browser received. Note that there is a single HTML form. The browser rendered the HTML as the page that we saw.

33 Translating ASPX to HTML All tags are instructions to the server. Removed and processed by the server. Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

34 Translating ASPX to HTML All tags are ASPX controls. Replaced by HTML as the aspx file is processed by ASPX on the server. ASPX compiles an object corresponding to each control. The object emits HTML text as the page is rendered on the server. All HTML text is passed to the browser unchanged.

35 Translating ASPX to HTML Hello, World! ASPX HTML

36 Add Some Style In Design view, right click on the label and select Properties. Properties window will appear. Expand Font and set Font properties Bold: True Name: Arial Size: XX-Large Set ForeColor property to Red

37 Set Properties

38 Give the Page a Title Select DOCUMENT Click the Play button to display the page in the browser.

39 Our Page in Chrome Title

40 What We Wrote

41 What the Browser Received

42 The Code-Behind File View Solution Explorer Expand Default.aspx Double click on Default.aspx.cs to open the source code file in an editor window.

43 Class _Default Page_Load will be executed before the page is rendered on the server.

44 Dynamically Alter the Page

45 The New Version in Chrome

46 What We Wrote Default.aspx has not changed.

47 What the Browser Received The text inside the is different.

48 What’s happening here? The server read file Default.aspx The server instantiated the label as an object. With the properties that we had set. The server read and compiled Default.aspx.cs, and then invoked our Page_Load method. Our code modified properties of the label object. Lable1.Text Label1.ForeColor The server invoked a method of the label object. Output yourself as HTML. The browser saw the resulting HTML.

49 Getting User Input Let’s modify the page to get the user’s name and customize the greeting for the user. Back in the Designer View the toolbox Position the cursor in front of Hello, World! Press Enter several times to add some space above Hello, World. Position the cursor at the top of the div box.

50 Getting User Input In the Toolbox, double click Label to add a Label to the page. Press Enter In the Toolbox, double click TextBox. You may need to scroll down in the Toolbox. Resize the Textbox as shown on the next slide.

51 Getting User Input

52 Modify the Page in the Designer Give the original label a name. lblGreeting in its (ID) Property Set text for new label to “Please enter your name then click OK.” Set ID property of the TextBox to tbName.

53 In the Designer

54 Add a Button Position the cursor between the textbox and Hello, World! Double click Button in ToolBox. Set its Text property to OK. Set its ID to btnOK. Resize the button, making it a bit larger.

55 Add a Button

56 Add a Button Double click on the button to generate an event handler. Add code to the event handler as shown in the next slide.

57 The Button-click Event Handler

58 The Page in Chrome Enter your name and then click OK.

59 After Clicking OK

What We Wrote

61 What the Browser Saw Initially Scroll down.

62 What the Browser Saw Initially

63 What the Browser Saw After the Click Scroll down.

64 What the Browser Saw After the Click

65 Files Let’s see what files we have created. The WebSites Directory

66 Directory Hello These files are plain text files. Can open in NotePad These files are the web app. Can be copied to an IIS web server and accessed on the Internet

67 Projects Directory

68 Solution Files These files are used by Visual Studio to manage the project. Remember settings, etc. Don’t need to look at them. Must not modify them. Can be deleted. Visual Studio will recreate them the next time we open the web site.

69 Assignment Review the slides for this presentation. Do the examples from this lecture for yourself if you didn’t do them in class. Read (Skim) Chapters of Beginning ASP.NET 4.0 in C# 2010