1 / 21

Web Forms and XML Web Services

Web Forms and XML Web Services. Tuc Goodwin. Introduction . This is the Eighth of 15 planned presentations Upcoming presentations:. This Month’s Objective:. Our overall objective is to

suchi
Download Presentation

Web Forms and XML Web Services

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Web Forms and XML Web Services Tuc Goodwin

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

  3. This Month’s 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.216:879/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 I’m 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 (ISBN:0072223189 )

  15. Creating a Web Service

  16. Coding a Web Service <WebMethod()> 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… We’ll continue to build from here…

  20. Next Time… Using ADO.NET

  21. Questions?

More Related