Web Forms and XML Web Services - PowerPoint PPT Presentation

1 / 21
About This Presentation
Title:

Web Forms and XML Web Services

Description:

The example I am using comes from the book Visual Basic.NET Tips & Techniques by ... Dim myWebService As New localhost.Service1 ... – PowerPoint PPT presentation

Number of Views:69
Avg rating:3.0/5.0
Slides: 22
Provided by: spNt
Category:
Tags: xml | forms | services | testing | web

less

Transcript and Presenter's Notes

Title: Web Forms and XML Web Services


1
Web Forms and XML Web Services
  • Tuc Goodwin

2
Introduction
  • This is the Eighth of 15 planned presentations
  • Upcoming presentations

Date Title
5/15/05 Web Forms and XML Web Services
6/11/05 Using ADO.NET
7/9/05 TBD (Tuc is on Vacation)
8/13/05 Deploying Applications
3
This Months Objective
  • Our overall objective is to
  • This Presentation explains how to create menus,
    status bars, and toolbars to enhance the
    usability of an application.

4
Demonstration Code
  • We will build a short demonstration application
    as we go through this lecture.
  • All code samples can be downloaded from
  • http//groups.msn.com/NTPCUGDevToolsSIG
  • And soon Beginning VB.NET SharePoint Site
  • http//69.41.237.216879/BEGVBNET/default.aspx
  • End With

5
Agenda
  • What this presentation is not
  • What is a Web Form?
  • Web Form Semi-Basics
  • Web Form Life Cycle
  • Creating a Web Form
  • What is a Web Service?
  • Creating a Web Service
  • Testing a Web Service
  • Consuming a Web Service from a Web Form

6
What this presentation is not
  • A how-to on writing HTML
  • HTML is an important skill, but you need to
    develop it yourself. There are many, many
    web-sites on the Internet that can provide
    direction.(can you spell G-O-O-G-L-E?)
  • All encompassing
  • This is a taste of web development. If you want
    to be good at it, you will need to practice.
    There is a lot that Im NOT going to cover. The
    ASP.NET SIG is a really good place to start.

7
What is a Web Form?
  • A web form is the basic building block for an
    ASP.NET application. Essentially it is a web
    page that is rendered by a web server to a
    browser.
  • It is stored in a file folder that is used by a
    virtual folder. Virtual Folders specify where
    your web application projects are physically
    stored.

8
Web Form Semi-Basics
9
Web Form Life Cycle
10
Creating a Web Project
11
Flow vs. Grid Layout
12
Creating a Web Form
13
Editing a Web Form
14
What is a Web Service?
  • A web service is an application that exists on
    the internet/intranet, responds to remote
    procedure calls, and does not contain a user
    interface.
  • The example I am using comes from the book Visual
    Basic.NET Tips Techniques by Kris Jamsa
    (ISBN0072223189 )

15
Creating a Web Service
16
Coding a Web Service
ltWebMethod()gt Public Function DateOnly() As
String DateOnly Date.Today.Date.ToString
End Function
17
Testing a Web Service
18
Consuming a Web Service from a Web Form
Private Sub Button1_Click(ByVal sender As
System.Object,
ByVal e As System.EventArgs) Handles
Button1.Click Dim myWebService As New
localhost.Service1 If
Me.RadioButton1.Checked Then Me.TextBox1.Text
myWebService.DateTime If
Me.RadioButton2.Checked Then Me.TextBox1.Text
myWebService.DateOnly If
Me.RadioButton3.Checked Then Me.TextBox1.Text
myWebService.TimeOnly If
Me.RadioButton4.Checked Then Me.TextBox1.Text
myWebService.DayOfWeek End Sub
19
Summary
  • We Created a Web Form
  • Consumed a Web Service
  • and we wrote some more code
  • Well continue to build from here

20
Next Time
  • Using ADO.NET

21
Questions?
Write a Comment
User Comments (0)
About PowerShow.com