Cantitate/Preț
Produs

ASP.Net and VB.NET Web Programming: Addison-Wesley Microsoft Technology

Autor Matt J. Crouch
en Limba Engleză Paperback – mai 2002
The practical tutorial on Web development with ASP.NET and Visual Basic .NET!
  • In-depth coverage of both Web applications and Web services.
  • Includes detailed chapters on ADO.NET data access and securing .NET applications.
  • Contains a "crash course" on Visual Basic .NET for both new VB developers and those upgrading from VB6!
With ASP.NET, developers can create robust, high-performance Web applications and services in much the same way theyve long constructed Windows applications: visually and rapidly. Whether youre an experienced Web developer or not, ASP.NET and VB.NET Web Programming will show you how to make the most of ASP.NET, using Microsofts most popular development language -- Visual Basic. Matthew Crouch begins by introducing the .NET platform and outlining its advantages for Web development when compared with alternative approaches. Next, he presents a crash course in Visual Basic .NET programming for both new VB developers and those upgrading from earlier versions. Crouch introduces ASP.NETs programming model and key features -- dissecting ASP.NET Web pages, introducing ASP.NETs powerful Web, HTML, and rich controls, and walking step-by-step through the creation of a full ASP.NET application. Next, he demonstrates how to access the .NET Framework Class Library from ASP.NET, leveraging .NETs built-in directory services, message queueing, Internet communication, and XML data manipulation facilities. The book also contains extensive coverage of building .NET managed components and Web services with Visual Basic .NET; accessing data with ADO.NET; and securing your .NET applications. The accompanying CD contains all the source code from the book. For all Web application developers who are just starting out with .NET. Matt J. Crouch is currently Senior Technologist at RealMed Corporation. He previously served as Web and software developer for Centillion Data Systems, Inc., an international software developer and service bureau. Crouch has been developing web and e-commerce applications with ASP and COM for several years. He is author of Web Programming with ASP and COM (AW).
Citește tot Restrânge

Preț: 11113 lei

Preț vechi: 27783 lei
-60%

Puncte Express: 167

Preț estimativ în valută:
2129 2306$ 1826£

Carte în stoc

Livrare din stoc 30 martie

Preluare comenzi: 021 569.72.76

Specificații

ISBN-13: 9780201734409
ISBN-10: 0201734400
Pagini: 768
Dimensiuni: 190 x 234 x 42 mm
Greutate: 1.27 kg
Ediția:1
Editura: Addison-Wesley Professional
Seria Addison-Wesley Microsoft Technology

Locul publicării:Boston, United States

Descriere

With ASP.NET, developers can create robust, high-performance Web applications and services in much the same way they've long constructed Windows applications: visually and rapidly. Whether you're an experienced Web developer or not, ASP.NET and VB.NET Web Programming will show you how to make the most of ASP.NET, using Microsoft's most popular development language -- Visual Basic. Matthew Crouch begins by introducing the .NET platform and outlining its advantages for Web development when compared with alternative approaches. Next, he presents a crash course in Visual Basic .NET programming for both new VB developers and those upgrading from earlier versions. Crouch introduces ASP.NET's programming model and key features -- dissecting ASP.NET Web pages, introducing ASP.NET's powerful Web, HTML, and rich controls, and walking step-by-step through the creation of a full ASP.NET application. Next, he demonstrates how to access the .NET Framework Class Library from ASP.NET, leveraging .NET's built-in directory services, message queueing, Internet communication, and XML data manipulation facilities. The book also contains extensive coverage of building .NET managed components and Web services with Visual Basic .NET; accessing data with ADO.NET; and securing your .NET applications. The accompanying CD contains all the source code from the book. For all Web application developers who are just starting out with .NET.

Cuprins



Preface.


1. The .NET Platform and the Web.
The Pathway to Web Applications.The Web Client/Server Model.Web Clients and Web Servers.Protocols for Web Client/Server Communication.Server-Side Processing with CGI Programs.Disadvantages of Using CGI.Components of ASP.NET and the .NET Framework.Overview of Internet Information Server.ISAPI Extensions.ISAPI Filters.Overview of ASP.NET.Web Forms.The .NET Common Language Runtime and Class Library.Managed Components in .NET.Web Services.Language Independence in the .NET Framework.COM+ Component Services and .NET.Direction and Plans for .NET.What's Ahead.

2. The VB.NET Crash Course.
What Is VB.NET?Hello World (Yet Again).Lab 2-1: Your First VB Application.Variables, Constants, and Operators.Variable Types.Declaring and Assigning Variables.Scope and Lifetime of Variables.Arrays.Converting Data Types.Using Constants.Arithmetic and Comparison Operators.Modularizing Your Code—Functions and Subroutines.Using Functions.Using Subroutines.Controlling Program Flow.Conditional Processing.Flow Control Statements.Loops.Handling Errors and Exceptions.Unstructured Error Handling.Structured Exception Handling.Object-Oriented Programming.Class Basics.Class Properties.Constructors and Destructors.Inheritance.Overridden Functions.Overloading.Polymorphism Overview.Interfaces.Implementing Polymorphism by Using Interfaces.Multithreaded Programming.Thread Synchronization.Events and Thread Synchronization.Summary.What's Ahead.

3. Working with ASP.NET.
The Features of ASP.NET.The Anatomy of ASP.NET Pages.The Code Structure of ASP.NET.Execution Stages and State Management.The Events Model for the Page Class.Introducing Web Forms.VS.NET Web Applications and Other IDE Basics.Separating Content and Code—the Code-Behind Feature.Application Configuration.Structure and Configuration of the Global.asax File.Using HTML Controls.The HTMLForm Control.The HTMLAnchor Control.The HTMLButton Control.The HTMLGenericControl Control.The HTMLImage Control.The HTMLInputButton Control.The HTMLInputCheckBox Control.The HTMLInputFile Control.The HTMLInputHidden Control.The HTMLInputImage Control.The HTMLInputRadioButton Control.The HTMLInputText Control.The HTMLSelect Control.The HTMLTable, HTMLTableCell, and HTMLTableRow Controls.The HTMLTextArea Control.Using Web Controls.Shared Web Control Properties.Web Controls for Displaying and Formatting Data.The Label Control.The Panel Control.The Table, TableRow, and TableCell Controls.Web Controls for Creating Buttons.The Button Control.The ImageButton Control.The LinkButton Control.Demonstration of Web Button Controls.Web Control for Inputting Text.The TextBox Control.Web Controls for Selecting Choices.The CheckBox Control.The RadioButton Control.The CheckBoxList and RadioButtonList Controls.Web Controls for Creating Lists.The ListBox Control.The DropDownList Control.Miscellaneous Basic Controls.The Hyperlink Control.The Image Control.Creating a Simple ASP.NET Application.Lab 3-1: Your First ASP.NET Project.ASP.NET Page Directives.The @ Page and @ Control Directives.The @ Import Directive.The @ Register Directive.The @ Assembly Directive.The @ OutputCache Directive.ASP.NET Rich Controls.The Calendar Control.The AdRotator Control.Validation Controls.The BaseValidator Control.The RequiredFieldValidator Control.The CompareValidator Control.The RangeValidator Control.The RegularExpressionValidator Control.The CustomValidator Control.Data List Controls.The Repeater Control.The DataGrid Control.The DataList Control.Building the XYZ Corporation Home Page.Lab 3-2: The XYZ Corporation Home Page.User Controls.Authoring a User Control.Saving State with the StateBag Object.ASP.NET Intrinsic Objects.The HttpRequest Object.The HttpResponse Object.The HttpServerUtility Object.The HttpApplicationState Object.The HttpSessionState Object.The ObjectContext Object.Summary.What's Ahead.

4. Using the .NET Framework Class Library.
Common Features of the .NET Framework Class Library.Using Data Collections (System.Collections).The ArrayList Class.The Stack Class.The Queue Class.The Hashtable Class.Handling File Input/Output and Directories (System.IO).Reading Text Files.Writing Text Files.Using Binary File I/O with the FileStream Object.Reading Binary Files.Writing Binary Files.Performing File Operations.Getting File Information.Copying, Moving, and Renaming Files.Deleting Files.Creating, Moving, and Renaming Directories.Creating and Getting Directory Information.Accessing Directory Contents.Watching the File System for Changes (System.IO.FileSystemWatcher).Using the Windows Event Log (System.Diagnostics).Working with Active Directory Services (System.DirectoryServices).Displaying Active Directory Services Contents.Searching Active Directory Services Contents.Modifying Active Directory Services Contents.Using Message Queues (System.Messaging).Creating a Queue.Sending a Message to a Queue.Dequeuing a Message.Communicating with Servers on the Internet (System.Web and System.Net).A Simple TCP Client Application.A Simple TCP Server Application.HTTP Communication.Manipulating XML Data (System.XML).Creating Tree-Based XML Documents.Loading and Searching Tree-Based XML Documents.Reading Stream-Based XML Data.Writing Stream-Based XML Data.Formatting XML Data for Display.Sending Internet E-mail (System.Web.Mail).Summary.What's Ahead.

5. Building .NET Managed Components for COM+.
The Concept of Managed Code Execution.The Common Language Runtime.The Common Type System.Just-in-Time Code Compilation.Code Assemblies.Application Domains.COM+ Component Services.Overview of COM.Overview of Transactions.Automatic Transactions.COM+ Applications.COM+ Security..NET Classes and COM+ Component Services.Using VB.NET to Develop Managed Components.Defining Namespaces.Using the Class Library.Using Component “ing”.Adding Initialization Code.Creating Methods.Creating Properties.Using the Class Library in an Application.Serviced Components.Building VB.NET Serviced Components.Lab 5-1: An Ordering and Inventory System Made with Serviced Components.Summary.What's Ahead.

6. Building Web Services.
The Need for Web Services.Standards-Based Functionality (XML and HTTP).Separation of Data from Presentation.Overview of Web Services.The .asmx File.Web Service Classes and Web Methods.Web Service Description Language.Web Service Wire Formats.Using HTTP GET.Using HTTP POST.Using the Simple Object Access Protocol (SOAP).Web Services Discovery.Static Discovery.Dynamic Discovery.Creating a Simple Web Service.Lab 6-1: The Palindrome Web Service.Calling Web Services with Proxy Classes.Creating a Client for a Web Service.Lab 6-2: A Console Application for the Palindrome Web Service.Managing State in Web Services.Using Transactions in Web Services.Making an Advanced Web Service.Lab 6-3: An Enhanced Ordering and Inventory System.Summary.What's Ahead.

7. Accessing Data with ADO.NET.
Overview of Data Access on the Web.Flat Files.Legacy or Mainframe Data.Proprietary Database APIs.Standard APIs.ADO.ADO.NET: The Next Generation of Data-Access Technology.ADO.NET Programming Objects and Architecture.The DataSet Class.The .NET Managed Data Provider.Displaying Database Data.The IDataReader Interface (System.Data.IDataReader).Working with Command Parameters.The DataGrid Control Revisited.Displaying Data in the DataGrid Control.Editing Data in the DataGrid Control.Programming with the DataList and DataGrid Controls.Lab 7-1: An Online Photo Gallery.Working with the DataSet and DataTable Objects.The DataSet Class Summary.The DataTable Class Summary.Creating DataSet and DataTable Objects.Adding Data to a DataTable Object.Displaying Data in a DataTable Object.Loading and Updating DataSet Objects with the IDataAdapter Interface.Filtering and Sorting Data with the DataView Class.Maintaining Data Integrity with the DataRelation Class.Using Manual Database Transactions.Working with Typed DataSet Objects.Lab 7-2: VS.NET and Typed DataSet Objects.Summary.What's Ahead.

8. Securing .NET Applications.
Windows Security 5File/Object System Security.User Rights, Groups, and Policies.IIS Authentication and Authorization Security.Anonymous Access.BASIC Authentication.Integrated Windows Authentication.Digest Authentication.Authentication by IP Address and Domain.A Crash Course in Cryptography.Symmetric Cryptography.Public Key Cryptography.Hashes and Digital Signatures.Digital Certificates.Implementing Data Encryption (System.Security.Cryptography).ASP.NET Authentication Security.The Forms-Based Authentication Provider.The Windows Authentication Provider.The Microsoft Passport Authentication Provider.Summary 6

Appendix A. .NET Framework Class Library Reference Tables.


Appendix B. ADO.NET Class Library Reference Tables.


Bibliography.


Index. 0201734400T05012002

Notă biografică

Matt J. Crouch is senior technologist at RealMed Corporation (http://www.realmed.com). Previously, Matt was senior Internet developer at Centillion Digital Systems,™ Inc. He has been developing Web applications, including e-commerce applications, with both ASP and COM since their release from Microsoft. Contact him at matt_crouch@hotmail.com.

0201734400AB05012002

Textul de pe ultima copertă

The Microsoft .NET Framework and Active Server Pages.NET (ASP.NET) allow developers to create world-class Web applications and Web services quickly and easily. Web applications built within the .NET Framework can integrate with any operating system running on any device. Web services are reusable component applications that enable distributed computing on the Internet, using standard protocols like HTTP and XML. Developers conversant in .NET can now deliver more dynamic applications to market more quickly.
ASP.NET and VB.NET Web Programming provides developers with the practical information and step-by-step guidance they need to become productive with .NET. This tutorial offers a comprehensive yet approachable introduction to the .NET Framework, ASP.NET programming, and XML Web Services development. Each chapter begins with an overview and then walks readers through one or more lab exercises that are well illustrated with screenshots and punctuated with tips and warnings. All examples are in Visual Basic.NET (VB.NET).
Key topics covered include:
  • The .NET Framework and the Web
  • Web Services
  • Common Language Runtime (CLR)
  • The .NET Framework class library
  • ASP.NET
  • VB.NET
  • Internet Information Server (IIS)
  • Managed components
  • Web Forms
  • ADO.NET
  • Securing ASP.NET applications


0201734400B05012002