Web设计书选择

来源:百度文库 编辑:神马文学网 时间:2024/07/02 17:39:05
Web Design: A Complete Introduction by Dr. Nigel Chapman and Jenny Chapman (Paperback - Jan. 2, 2007)Buy new$55.64 21 new from $38.0012 used from $40.00
Get it by Monday, May 10 if you order in the next 18 hours and choose one-day shipping.Eligible for FREE Super Saver Shipping.   (1) Excerpt - page 15: "... bi 1 The Web Community When considering the technology beneath the World Wide Web, and the design challenge of producing exciting and useful Web sites, it is ..."Surprise me! See a random page in this book. Skip To Page Navigation|Skip To Page Content About Pearson Higher Education

  • Browse by disciplineor  

Advanced Search

  • Educator Home
  •  | 
  • eLearning & Assessment
  •  | 
  • Support/Contact Us
  •  | 
  • Find your rep
  •  | 
  • Exam copy bookbag

Addison-Wesley / Prentice Hall

Computer Science

My Instructor Resource Center :  Log in or request access

View larger cover

 

Programming the World Wide Web, 6/E
Robert W. SebestaUniversity of Colorado, Colorado Springs

ISBN-10: 0132130815
ISBN-13:  9780132130813

Publisher:  Addison-Wesley
Copyright:  2011
Format:  Paper; 800 pp
Published:  03/02/2010
Status: Instock


Suggested retail price: $100.67  Buy from myPearsonStore


 

Request a printed exam copy
Email this page to a colleague
Prepare for the First Day of Class
Learn about customization options

 

  • About the
    Book
  • Take a
    closer look
  • Resources
  • Pearson Choices
  • Packages
  • Description |
  • Features |
  • New to This Edition |
  • Table of Contents |
  • Courses |
  • Previous Edition(s)

For undergraduate students who have completed a course in object-oriented programming

 

Programming the World Wide Web 2010 provides a comprehensive introduction to the tools and skills required for both client- and server-side programming, teaching students how to develop platform-independent sites using the most current Web development technology. Essential programming exercises are presented using a manageable progression: students begin with a foundational XHTML Web site and employ new languages and technologies to add features as they are discussed in the course. Readers with previous experience programming with an object-oriented language are guided through concepts relating to client-side and server-side programming, including ASP.NET using C#, JavaScript™, Java™ servlets, Ajax, JSP™, XHTML, XML, PHP, Ruby, and Rails.

 

 

 

 

 

  • Client-side and server-side technologies are covered in two distinct sections, client-side in Chapters 2—7 and server-side in Chapters 8—16.
    • Client-side technology is covered using HTML, XHTML, CSS, JavaScript, Java applets, and XML.
    • Server-side technology is covered using Flash, Faces, Java servlets, and JSP, PHP, ASP.NET, Ruby, Ruby on Rails, Rails 2.0, and Ajax.
  • JavaScript is introduced in Chapter 4 using students’ knowledge of other programming languages to leverage the discussion.
  • Building XHTML documents is presented in Chapter 5.
  • Chapter 8 on Flash Programming includes examples of drawing graphics figures, animation using both motion and shape tweening, and adding a sound track on a movie.
  • Chapter 10 on Ajax contains sections on return document forms, Ajax toolkits, and Ajax security.
  • Chapter 11 on Java Web Programming includes sections on NetBeans, JavaBeans, and JavaServer Faces.
  • Chapter 12 is a complete introduction to ASP.NET, beginning with a brief introduction to C# and continuing with discussions of ASP.NET controls and Web service construction with ASP.NET. It includes a section on ASP.NET Ajax and a brief introduction to Visual Studio 8.
  • Chapter 13 covers Web access to relational databases, including SQL and MySQL, and Web access to databases using Perl, PHP, and Java JDBC.
  • A brief, accessible Introduction to Java Appendix is included for C++ programmers, including coverage of Java applets, servlets, JSP, and JDBC.
  • World Wide Web Consortium (W3C) Validation Program: All of the markup documents in the book are valid on the W3C validation program.

SUPPLEMENTS

  • Instructor Solutions Manual
  • Source Code
  • PPT Lecture Slides
  • PPT Figure Slides
  • CourseSmart

 

 

  • Updated Flash Treatment: Chapter 8, which covers Flash, was extensively changed to reflect changes in the CS4 version of the Flash authoring environment.
  • Reworked Java Web Software Chapter: Chapter 11, “Java Web Software,” was revised to use version 6.7 of the Net-Beans development system. Also, example programs were modified to take into account contemporary Java coding practices.
  • Revised ASP.NET Chapter: Chapter 12, “Introduction to ASP.NET,” was revised to use version 8 of Visual Studio. Also, the introduction to Visual Studio was moved earlier in the chapter and is now used for most of the examples. Finally, the coverage of Web services using ASP.NET was significantly increased.
  • Additional Database Content: A new section was added to Chapter 13, “Database Access through the Web.” The section introduces and discusses database access from ASP.NET using ADO.NET and data controls.
  • Throughout the book, numerous small changes were made to improve the correctness and clarity of the material.

 

Preface xiii 1
Fundamentals 1
1.1 A Brief Introduction to the Internet 2
1.2 The World Wide Web 6
1.3 Web Browsers 7
1.4 Web Servers 8
1.5 Uniform Resource Locators 11
1.6 Multipurpose Internet Mail Extensions 13
1.7 The Hypertext Transfer Protocol 15
1.8 Security 18
1.9 The Web Programmer’s Toolbox 20
Summary 28
Review Questions 30
Exercises 32

2 Introduction to XHTML 35
2.1 Origins and Evolution of HTML and XHTML 36
2.2 Basic Syntax 38
2.3 Standard XHTML Document Structure 39
2.4 Basic Text Markup 40
2.5 Images 49
2.6 Hypertext Links 54
2.7 Lists 57
2.8 Tables 63
2.9 Forms 71
2.10 Syntactic Differences between HTML and XHTML 84
Summary 85
Review Questions 86
Exercises 88

3 Cascading Style Sheets 91
3.1 Introduction 92
3.2 Levels of Style Sheets 93
3.3 Style Specification Formats 94
3.4 Selector Forms 96
3.5 Property Value Forms 99
3.6 Font Properties 100
3.7 List Properties 106
3.8 Color 110
3.9 Alignment of Text 112
3.10 The Box Model 114
3.11 Background Images 119
3.12 The and

Tags 121
3.13 Conflict Resolution 122
Summary 124
Review Questions 126
Exercises 127

4 The Basics of JavaScript 129
4.1 Overview of JavaScript 130
4.2 Object Orientation and JavaScript 133
4.3 General Syntactic Characteristics 134
4.4 Primitives, Operations, and Expressions 137
4.5 Screen Output and Keyboard Input 146
4.6 Control Statements 150
4.7 Object Creation and Modification 158
4.8 Arrays 159
4.9 Functions 164
4.10 An Example 169
4.11 Constructors 170
4.12 Pattern Matching Using Regular Expressions 171
4.13 Another Example 176
4.14 Errors in Scripts 177
Summary 179
Review Questions 181
Exercises 183

5 JavaScript and XHTML Documents 185
5.1 The JavaScript Execution Environment 186
5.2 The Document Object Model 187
5.3 Element Access in JavaScript 191
5.4 Events and Event Handling 193
5.5 Handling Events from Body Elements 197
5.6 Handling Events from Button Elements 199
5.7 Handling Events from Text Box and Password Elements 204
5.8 The DOM 2 Event Model 214
5.9 The navigator Object 219
5.10 DOM Tree Traversal and Modification 221
Summary 222
Review Questions 223
Exercises 224

6 Dynamic Documents with JavaScript 227
6.1 Introduction 228
6.2 Positioning Elements 228
6.3 Moving Elements 234
6.4 Element Visibility 237
6.5 Changing Colors and Fonts 238
6.6 Dynamic Content 242
6.7 Stacking Elements 245
6.8 Locating the Mouse Cursor 249
6.9 Reacting to a Mouse Click 251
6.10 Slow Movement of Elements 253
6.11 Dragging and Dropping Elements 256
Summary 261
Review Questions 262
Exercises 262

7 Introduction to XML 265
7.1 Introduction 266
7.2 The Syntax of XML 268
7.3 XML Document Structure 271
7.4 Document Type Definitions 272
7.5 Namespaces 279
7.6 XML Schemas 281
7.7 Displaying Raw XML Documents 289
7.8 Displaying XML Documents with CSS 291
7.9 XSLT Style Sheets 293
7.10 XML Processors 302
7.11 Web Services 304
Summary 305
Review Questions 307
Exercises 309

8 Introduction to Flash 311
8.1 Origins and Uses of Flash 312
8.2 A First Look at the Flash Authoring Environment 312
8.3 Drawing Tools 318
8.4 Static Graphics 327
8.5 Animation and Sound 332
8.6 User Interactions 343
Summary 348
Review Questions 350
Exercises 351

9 Introduction to PHP 353
9.1 Origins and Uses of PHP 354
9.2 Overview of PHP 354
9.3 General Syntactic Characteristics 355
9.4 Primitives, Operations, and Expressions 356
9.5 Output 362
9.6 Control Statements 364
9.7 Arrays 367
9.8 Functions 376
9.9 Pattern Matching 379
9.10 Form Handling 382
9.11 Files 388
9.12 Cookies 391
9.13 Session Tracking 394
Summary 394
Review Questions 396
Exercises 398

10 Introduction to Ajax 401
10.1 Overview of Ajax 402
10.2 The Basics of Ajax 405
10.3 Return Document Forms 415
10.4 Ajax Toolkits 419
10.5 Security and Ajax 427
Summary 428
Review Questions 429
Exercises 430

11 Java Web Software 431
11.1 Introduction to Servlets 432
11.2 The NetBeans Integrated Development Environment 437
11.3 A Survey Example 447
11.4 Storing Information on Clients 454
11.5 JavaServer Pages 463
11.6 JavaBeans 475
11.7 Model-View-Controller Application Architecture 479
11.8 JavaServer Faces 480
Summary 489
Review Questions 490
Exercises 492

12 Introduction to ASP.NET 495
12.1 Overview of the .NET Framework 496
12.2 A Bit of C# 499
12.3 Introduction to ASP.NET 503
12.4 ASP.NET Controls 510
12.5 ASP.NET AJAX 540
12.6 Web Services 546
Summary 555
Review Questions 556
Exercises 558

13 Database Access through the Web 559
13.1 Relational Databases 560
13.2 An Introduction to the Structured Query Language 562
13.3 Architectures for Database Access 567
13.4 The MySQL Database System 569
13.5 Database Access with PHP and MySQL 572
13.6 Database Access with JDBC and MySQL 581
13.7 Database Access with ASP.NET and MySQL 589
Summary 596
Review Questions 598
Exercises 600

14 Introduction to Ruby 601
14.1 Origins and Uses of Ruby 602
14.2 Scalar Types and Their Operations 602
14.3 Simple Input and Output 610
14.4 Control Statements 613
14.5 Fundamentals of Arrays 618
14.6 Hashes 623
14.7 Methods 625
14.8 Classes 630
14.9 Blocks and Iterators 635
14.10 Pattern Matching 638
Summary 641
Review Questions 642
Exercises 642

15 Introduction to Rails 645
15.1 Overview of Rails 646
15.2 Document Requests 648
15.3 Rails Applications with Databases 655
15.4 Rails with Ajax 675
Summary 683
Review Questions 684
Exercises 685

Appendix A Introduction to Java 687
Appendix B Named Colors 703
Appendix C Java Applets 707
Index 735

 

Web程序设计(第5版)(国外计算机科学经典教材) 正在读(0人), 已读过(1人) |   放入书架 丛书名: 国外计算机科学经典教材 作  者: (美)塞巴斯塔 著,徐燕华孙红丽 译出 版 社: 清华大学出版社
  • 出版时间: 2010-1-1
  • 字  数: 907000
  • 版  次: 1
  • 页  数: 580
  • 印刷时间: 2010-1-1
  • 开  本: 16开
  • 印  次: 1
  • 纸  张: 胶版纸
  • I S B N : 9787302216179
  • 包  装: 平装
所属分类: 图书 >> 计算机/网络 >> 程序设计 >> 网站开发定价:¥69.00 当当价:¥58.20 折扣:84折 节省:¥10.80 钻石vip价:¥55.30送积分:582 积分说明 件 请输入购买数量。 共有商品评论1条 查看评论摘要

分享到: 开心网 人人网

内容简介

本书全面介绍了建立和维护Web站点必需的工具和技术,包括Intemet和万维网的起源与演变、Web客户端和服务器端开发中的基本概念,以及与Web开发相关的主要编程语言和工具等。本书对第4版的内容做了大量细致的修改并且新增了许多内容,如介绍了FIash的使用、Ajax工具包和其安全性,以及与ASP.NETAJAX的相关内容。

作者简介

Robert W.Sebesta是美国科罗拉多大学计算机科学系(斯普林司校区)的系主任。他从美国宾夕法尼亚州立大学获得计算机科学博士学位后,一直从事计算机科学的教学工作,拥有长达30余年的丰富教学经验,还曾编著过包括本书在内的多本经典教材。 

Robert W. Sebesta
   Associate Professor Emeritus, Computer Science
Office: Engr 243
Phone: 255-3142
Email: rws@cs.uccs.edu
Office Hours :Monday, 10:45 - noon, others by appointment

Course Materials for Fall 2009

 

CS 301 Web Programming      

  • Educator Home
  •  | 
  • eLearning & Assessment
  •  | 
  • Support/Contact Us
  •  | 
  • Find your rep
  •  | 
  • Exam copy bookbag
 

My Instructor Resource Center :  Log in or request access

Instructor Resource Center

Teaching your course just got easier!

For your convenience, many of our instructor supplements are available for download from your textbook's catalog page. Available resources include:

  • Text-specific products such as PowerPoint® presentations, Image Banks, and Instructor Manuals
  • Premium content and instructions for Blackboard® cartridges and WebCT® e-Packs
  • Test item files and access to TestGen and Pearson MyTest
  • Access to create your own CourseCompass® course
  • Pearson's MySearchLab — the easiest way for students to master a writing or research project

How to register

  1. Click the request access link.
  2. Choose what type of customer you are.
  3. Enter your email address. If you're already in our customer database, you'll receive an access code via email, usually within minutes! If you're not in our customer database, we'll ask you where you teach and then manually verify your employment there and send you an access code within four to five days.
  4. Once you receive your access code, follow the instructions in the email to redeem it and create your login and password.
  5. Come back to www.pearsonhighered.com and download resources from our online catalog.

How to download supplements

  1. Find your textbook in our online catalog using the "Go to a discipline" menu, "Find a product" search, or advanced search at the top of this page.
  2. On your textbook's web page, click the "Resources" tab. Items available for download have a disk icon and a "View downloadable files" link.
  3. Click the "View downloadable files" link below the supplement you want to download.
  4. Click on the name or version of the file you wish to download.
  5. Enter your login name and password when prompted.
  6. Read the terms and conditions and click "I accept."
  7. Save your file to your computer in a place where you will be able to find it.

You may continue to download additional supplements until you log out.

Note: Instructors using TestGen testbank files will also need to download the TestGen application. Visit our Help Downloading Resources page for more information and technical support.




First-time Users

You may already have access to the Instructor Resource Center! If you have a login name for another Pearson product, try using it below before requesting IRC access.

Request IRC access
Redeem an IRC access code

Returning Users

Login name:

Password:

Forgot login/password?      

Get Help Downloading Resources
Contact Technical Support


We are committed to maintaining the integrity of this instructor-only resource. The material available through the Instructor Resource Center is provided solely for the use of instructors in teaching their courses and assessing student learning. All requests for instructor access are verified against our customer database and/or through contacting the requestor's institution. Please help us by not sharing your login and password with others.

Thank you!