close menu
Bookswagon-24x7 online bookstore
close menu
My Account
Home > Computing and Information Technology > Computer programming / software engineering > Web programming > ASP.NET and VB.NET Web Programming: (Addison-Wesley Microsoft Technology)
22%
ASP.NET and VB.NET Web Programming: (Addison-Wesley Microsoft Technology)

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

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist
X

About the Book

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 WebWeb ServicesCommon Language Runtime (CLR)The .NET Framework class libraryASP.NETVB.N ETInternet Information Server (IIS)Managed componentsWeb FormsADO.NET Securing ASP.NET applications 0201734400B05012002

Table of Contents:
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 5 File/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


Best Sellers



Product Details
  • ISBN-13: 9780201734409
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Depth: 38
  • Language: English
  • Returnable: Y
  • Spine Width: 33 mm
  • Width: 232 mm
  • ISBN-10: 0201734400
  • Publisher Date: 29 May 2002
  • Binding: Paperback
  • Height: 187 mm
  • No of Pages: 768
  • Series Title: Addison-Wesley Microsoft Technology
  • Weight: 1225 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
ASP.NET and VB.NET Web Programming: (Addison-Wesley Microsoft Technology)
Pearson Education (US) -
ASP.NET and VB.NET Web Programming: (Addison-Wesley Microsoft Technology)
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

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

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals



    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA