Active Server Pages (ASP)

Total Page:16

File Type:pdf, Size:1020Kb

Active Server Pages (ASP) Active Server Pages (ASP) Outline 11.1 Introduction 11.2 How Active Server Pages Work 11.3 Client-side Scripting versus Server-side Scripting 11.4 Using Personal Web Server or Internet Information Server 11.5 A Simple ASP Example 11.6 Server-side ActiveX Components 11.7 File System Objects 11.8 Session Tracking and Cookies 11.9 Accessing a Database from an Active Server Page 11.10 Case Study: A Product Catalog 11.1 Introduction • Active Server Pages (ASP) – Processed in response to client request – ASP file contains HTML and scripting code – VBScript de facto language for ASP scripting • Other languages can be used – JavaScript – .asp file extension – Microsoft-developed technology – Send dynamic Web content • HTML • DHTML • ActiveX controls • Client-side scripts • Java applets 11.2 How Active Server Pages Work • Client sends request – Server receives request and directs it to ASP – ASP processes, then returns result to client • HTTP request types – Request methods • GET – Gets (retrieves) information from server – Retrieve HTML document or image • POST – Posts (sends) data to server – Send info from HTML form » Client-entered data » Info to search Internet » Query for a database » Authentication info 11.2 How Active Server Pages Work (II) • Browsers often cache Web pages – Cache: save on disk – Typically do not cache POST response • Next POST request may not return same result • Client requests ASP file – Parsed (top to bottom) by ActiveX component asp.dll • ActiveX component: server-side ActiveX control that usually does not have GUI • Code executed as encountered • @LANGUAGE statement – Specifies scripting language – If not used, VBScript assumed • As interpreted, HTML (plus client-side scripts) sent to client – Parsed each time requested – Web server must support ASP by providing component such as asp.dll 11.3 Client-side Scripting versus Server-side Scripting • Client-side scripting – Used for: • Validation • Interactivity • Enhancing Web page with ActiveX controls • Dynamic HTML • Java applets • Accessing browser – Browser-dependent • Scripting language must be supported by browser or scripting host – Viewable on client • Protecting source code difficult 11.3 Client-side Scripting versus Server-side Scripting (II) • Server-side scripting – Reside on server more flexibility • Database access – Usually generate custom response for client – Access to ActiveX server components • Extend scripting language functionality – Run exclusively on server cross-platform issues not a concern – Not visible to client • Only HTML + client-side scripts sent to client 11.4 Using Personal Web Server or Internet Information Server • Create subdirectories in root – Deitel_Iw3htp • Copy all .asp files – includes • Copy all .inc files – images • Copy all .gif files – May have to change paths in .asp files to reflect directories 11.5 A Simple ASP Example • Scripting delimiters – <% and %> – Indicate code is to be executed on server, not client • @LANGUAGE – Specify scripting language (default VBScript) – <% @LANGUAGE = “VBScript” %> • Each time page refreshed, server loads and interprets ASP 1<% @LANGUAGE = VBScript %> 2<% Option Explicit %> 3<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 4<% ' Fig. 11.1 : clock.asp %> 1.1Specify VBScript as 5 scripting language 6<HTML> 7<HEAD> 1.2Use Option 8<TITLE>A Simple ASP Example</TITLE> Explicit to 9<META HTTP-EQUIV = "REFRESH" CONTENT = "60; URL = CLOCK.ASP"> indicate variables be explicitly 10</HEAD> declared by 11<BODY> programmer 12 13<FONT FACE = ARIAL SIZE = 4><STRONG>Simple ASP Example</STRONG> 1.3Use META tag to set 14</FONT><P> refresh interval 15 <TABLE BORDER = "6"> 16 <TR> Time gets current time 17 <TD BGCOLOR = "#000000"> on server 18 <FONT FACE = Arial COLOR = "#00FF00" SIZE = 4> (hh:mm:ss) 19 <% =Time() %> Short for <% Call 20 </FONT> Response.Write( 21 </TD> Time() ) %> 22 </TR> 23 </TABLE> 24</BODY> 25</HTML> Output from a simple Active Server Page 11.6 Server-side ActiveX Components • Server-side ActiveX components – Typically do not have GUI – If scripting language for ASP not support certain feature, create ActiveX Server component • Visual C++, Visual Basic, Delphi, etc. – Usually execute faster than scripting language equivalents – Executed on server • Client does not need to support ActiveX technologies Some server-side ActiveX components included with IIS and PWS Component Name Description MSWC.BrowserType ActiveX component for gathering information (e.g., type, version, etc.) about the client’s browser. MSWC.AdRotator ActiveX component for rotating advertisements on a Web Page. MSWC.NextLink ActiveX component for linking together Web pages. MSWC.ContentRotator ActiveX component for rotating HTML content on a Web page. MSWC.PageCounter ActiveX component for storing the number of times a Web page has been requested. MSWC.Counters ActiveX components that provides general-purpose persistent counters. MSWC.MyInfo ActiveX component that provides information (e.g., owner name, owner address, etc.) about a Web site. Scripting.FileSystemObject ActiveX component that provide an object library for accessing files on the server or on the server’s network. ActiveX Data Objects (ADO) Data ActiveX components that provide an object library for Access Components accessing databases. 1<% @LANGUAGE = VBScript %> 2<% Option Explicit %> 3<% ' Fig. 11.3 : rotate.asp %> 4 1.1Create instance of 5<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> AdRotator 6<HTML> component 7<HEAD> 8<TITLE>AdRotator Example</TITLE> 1.2Call Response 9</HEAD> object’s Write 10 method to send 11<BODY> advertisement to 12<FONT FACE = "Arial" SIZE = 4><STRONG>AdRotator Example</STRONG> client 13</FONT><P> 14<% 15 ' Declare flagChanger 16 Dim flagChanger 17 18 ' Create an AdRotator object 19 Set flagChanger = Server.CreateObject( "MSWC.AdRotator" ) 20 21 ' Use config.txt to send an advertisement to the client 22 Call Response.Write( _ 23 flagChanger.GetAdvertisement( "config.txt" ) ) 24%> 25</BODY> 26</HTML> 27 WIDTH 54 28 HEIGHT 36 29 BORDER 1 30 * config.txt 31 /images/us.gif 32 http://www.odci.gov/cia/publications/factbook/us.html 1. Header includes 33 United States Information image HEIGHT, image WIDTH and 34 20 image BORDER 35 /images/france.gif width 36 http://www.odci.gov/cia/publications/factbook/fr.html 37 France Information 38 20 Asterisk separates 39 /images/germany.gif header from advertisements 40 http://www.odci.gov/cia/publications/factbook/gm.html 41 Germany Information Image location 42 20 Destination URL 43 /images/italy.gif ALT tag 44 http://www.odci.gov/cia/publications/factbook/it.html 45 Italy Information Percentage of time image appears 46 20 47 /images/spain.gif 48 http://www.odci.gov/cia/publications/factbook/sp.html 49 Spain Information 50 20 Demonstrating the AdRotator ActiveX component 11.7 File System Objects • File System Objects (FSOs) – Manipulate files, directories and drives – Read and write text – In Microsoft Scripting Runtime Library – 5 FSO types: • FileSystemObject – Interact with Files, Folders and Drives • File – Manipulate Files of any type • Folder – Manipulate Folders (i.e, directories) • Drive – Gather info about Drives (local or remote) • TextStream – Read and write text files 11.7 File System Objects • OpenTextFile(filename, code, create) – filename - file to open – code • 8 - open for appending • 1 - open for reading • 2 - open for writing – create? - if true, creates a new file if does not exist FileSystemObject methods Methods Description CopyFile Copies an existing File. CopyFolder Copies an existing Folder. CreateFolder Creates and returns a Folder. CreateTextFile Creates and returns a text File. DeleteFile Deletes a File. DeleteFolder Deletes a Folder. DriveExists Tests whether or not a Drive exists. FileExists Tests whether or not a File exists. Returns boolean. FolderExists Tests whether or not a Folder exists. Returns boolean. GetAbsolutePathName Returns the absolute path as a string. GetDrive Returns the specified Drive. GetDriveName Returns the Drive drive name. GetFile Returns the specified File. GetFileName Returns the File file name. GetFolder Returns the specified Folder. GetParentFolderName Returns a string representing the parent folder name. GetTempName Creates and returns a string representing a file name. MoveFile Moves a File. MoveFolder Moves a Folder. OpenTextFile Opens an existing text File. Returns a TextStream. Some common File properties and methods Property/method Description Properties DateCreated Date. The date the File was created. DateLastAccessed Date. The date the File was last accessed. DateLastModified Date. The date the File was last modified. Drive Drive. The Drive where the file is located. Name String. The File name. ParentFolder String. The File’s parent folder name. Path String. The File’s path. ShortName String. The File’s name expressed as a short name. Size The size of the File in bytes. Methods Copy Copy the File. Same as CopyFile of FileSystemObject. Delete Delete the File. Same as DeleteFile of FileSystemObject. Move Move the File. Same as MoveFile of FileSystemObject. OpenAsTextStream Opens an existing File as a text File. Returns TextStream. Some Folder properties and methods Property/method Description Properties Attributes Integer. Value indicating Folder’s attributes (read only, hidden, etc.) DateCreated Date. The date the folder was created. DateLastAccessed Date. The date the folder was last accessed. DateLastModified Date. The date the folder was last modified. Drive Drive. The Drive where
Recommended publications
  • Active Server Pages Architecture
    Active Server Pages Architecture Li Yi South Bank University Contents 1. Introduction ...................................................................................................................................... 2 1.1 Host-based databases ............................................................................................................... 2 1.2 Client/server databases ............................................................................................................ 2 1.3 Web databases........................................................................................................................... 3 2. Active Server Pages ........................................................................................................................ 5 2.1 ASP Components ...................................................................................................................... 6 2.2 ADO and Database................................................................................................................... 7 2.3 The steps of executing a query ............................................................................................. 11 3 ASP Attributes ................................................................................................................................ 12 References:.......................................................................................................................................... 13 1 1. Introduction The development of databases always comes
    [Show full text]
  • Implementing OGC Web Map Service Client Applications Using JSP, JSTL and XMLC
    Implementing OGC Web Map Service Client Applications Using JSP, JSTL and XMLC Hao Ding , Richard Pascoe & Neville Churcher Department of Computer Science University of Canterbury. Christchurch, New Zealand Phone: +64 3 364-2362 Fax: +64 3 364-2569 Email: [email protected] , {richard, neville}@cosc.canterbury.ac.nz Presented at SIRC 2002 – The 14th Annual Colloquium of the Spatial Information Research Centre University of Otago, Dunedin, New Zealand th December 3-5 2002 ABSTRACT Java technologies are widely used in web application development. In this paper are described three approaches to developing Java-based web applications and our experiences with applying each to the development of client that interact with servers implementing the OGC (Open GIS Consortium) Web Map Service (WMS) specification. Also described is the installation and configuration of open source software that implements the WMS specification. The paper is concluded with some preliminary insights into when one of the three approaches to WMS client implementation is more suited to another. Keywords and phrases: WMS, JSP, JSTL, XMLC, map layer, web map server 1.0 INTRODUCTION Of the many technologies, such as Common Gateway Interface (CGI), Active Server Pages (ASP), JavaServer Pages (JSP), that are used to develop web applications, three are of particular interest to the research presented here. These three technologies or approaches to developing clients that utilise web services are JavaServer Pages (JSP), JSP with the use of tags from the JSP Standard Tag Library (JSTL), and the eXtensible Markup Language Compiler (XMLC). JSP is a more convenient way to write Java servlets, and allows the insertion of Java code directly into static HTML (Hypertext Markup Language) pages.
    [Show full text]
  • Tool Support for Computer Role-Playing Game Programming: Foundations, Guidelines and Applications
    Tampereen teknillinen yliopisto. Julkaisu 1237 Tampere University of Technology. Publication 1237 Juha-Matti Vanhatupa Tool Support for Computer Role-Playing Game Programming: Foundations, Guidelines and Applications Thesis for the degree of Doctor of Science in Technology to be presented with due permission for public examination and criticism in Tietotalo Building, Auditorium TB222, at Tampere University of Technology, on the 17th of October 2014, at 12 noon. Tampereen teknillinen yliopisto - Tampere University of Technology Tampere 2014 ISBN 978-952-15-3341-9 (printed) ISBN 978-952-15-3393-8 (PDF) ISSN 1459-2045 Abstract Computer role-playing games (CRPGs) are a genre of computer games, which aim at providing similar player experience than their ancestors, paper-and- pen role-playing games. For a type of digital games, their evolution is already rather long, as the first ones were created in 1980s. Typically CRPGs em- phasize character development and to support this huge fantasy worlds and sophisticated storylines are also present. CRPG development has unique challenges, which derive from these typical features. Content creation is a continuous issue, since huge virtual worlds and long storylines must be filled with content. Personalization is also an important issue, because all fun of creating personalized character is lost if it has no effect into the game. Low starting threshold is important for successful game. It is becoming essential that the player can start playing quickly and she is not required to spent time waiting the installation to be completed. This can be achieved by web-based approach, since web-based games do not require installations.
    [Show full text]
  • Developing an E-Commerce System Using Active Server Pages
    Developing an E-Commerce System Using Active Server Pages Robert W. Ingram Ross-Culverhouse Chair Culverhouse School of Accountancy University of Alabama Box 870220 Tuscaloosa, AL 35487 (205) 348-2907 [email protected] Dale L. Lunsford Assistant Professor Culverhouse School of Accountancy University of Alabama Box 870220 Tuscaloosa, AL 35487 (205) 348-5780 [email protected] August 2002 Developing an E-Commerce System Using Active Server Pages Abstract: This paper describes a case to illustrate analysis, design, and implementation issues involving a multi-tier e-commerce system. The case is designed for use in advanced accounting systems or systems analysis and design courses. The case involves analysis of a sales order system that will be implemented using a web interface and relational database, conceptual design of the system, and implementation of the system. A variety of tasks are involved in the case, but an instructor can select the tasks of relevance in a particular course. Key Words: E-commerce, systems analysis and design, systems development, security. Data Availability: All data and programs described are available from the authors. 1 Developing an E-Commerce System Using Active Server Pages I. Introduction Web-based applications are an important means of accessing business information. E-commerce represents an increasingly important part of the economy and is an obvious source of demand for web-based systems. In addition, companies may use the Internet for internal communications because of the ability of employees to access data from locations throughout the world. Companies like Oracle and SAP are increasingly focusing on the Web as a means of deploying their software products.
    [Show full text]
  • Web Based Applications, Tomcat and Servlets - Lab 3
    CMPUT 391 Database Management Systems Web based Applications, Tomcat and Servlets - Lab 3 - CMPUT 391 – Database Management Systems Department of Computing Science University of Alberta The Basic Web Server Lab 3 CMPUT 391 – Database Management Systems 2 Tomcat and Servlets CGI CGI – Common Gateway Interface Processing forms & Generating dynamic content (early solution ) Spawning an external program, pass the data from the HTML form to the program Limitation: An expensive process (Spawning an external program) Lab 3 CMPUT 391 – Database Management Systems 3 Tomcat and Servlets CGI: Illustration Browser Browser Browser Browser GET Response Form.cgi Web Server Web Server Web Server Web Server Spawn an Read environment external program variables Response Start form.cgi CGfoI rPmr.ocggria m CGI Program CGI Program CteGrIm Pinroagterasm time Lab 3 CMPUT 391 – Database Management Systems 4 Tomcat and Servlets ASP ASP – Active Server Pages Microsoft’s answers to CGI programming ASP page - a Web page with code embedded inside, interpreted by the Web server Using special HTML tags, VBScript/JavaScript code can be inserted Lab 3 CMPUT 391 – Database Management Systems 5 Tomcat and Servlets Servlets Java technology's answer to CGI programming A Java class handling forms on Java Web servers Applet -- a little piece of program (client side) Servlet -- a little piece of program (server side) A servlet can do everything that a CGI program can Running inside the JVM along with the Web server itself Lab 3 CMPUT 391 – Database Management
    [Show full text]
  • Computer Information Systems: Web Applications (CISW) 1
    Computer Information Systems: Web Applications (CISW) 1 CISW 24 Secure Web Server Programming in Python COMPUTER INFORMATION 3 Units (Degree Applicable) Lecture: 54 SYSTEMS: WEB Corequisite: CISW 24L Secure web programming to create user interfaces, extract information APPLICATIONS (CISW) and manage databases, manage files, format reports, and access web CISW 15 Web Site Development servers using Python programming language. Student must be enrolled in 3.5 Units (Degree Applicable, CSU) CISW 24L, a concurrent lab co-requisite. Lecture: 54 Lab: 27 CISW 24L Secure Web Server Programming in Python Laboratory Advisory: CISB 15 or CISB 16 0.5 Units (Degree Applicable) Lab: 27 Plan, develop, implement, publish, and maintain Web sites with a Corequisite: CISW 24 professional visual Web-authoring application, includes working with text and images, internal and external hyperlinks, image maps, tables, Laboratory for secure web programming to create user interfaces, extract Cascading Style Sheets (CSS), Web page content, Web forms, multimedia information and manage databases, manage files, format reports, and objects (Flash text, Flash buttons, sounds, and video), interactions and access web servers using Python programming language. Student must behaviors, and Web page templates. Principles of Web site structures, be enrolled in CISW 24, a concurrent lecture co-requisite. documentation, management, and maintenance will be discussed. CISW 31 Secure Web Server Programming in PHP CISW 17 HTML, CSS, and JavaScript Programming 3 Units (Degree Applicable) 3 Units (Degree Applicable, CSU) Lecture: 54 Lecture: 54 Corequisite: CISW 31L Advisory: CISB 11 Advisory: (CISN 34 and CISN 34L) or (CISW 24 and CISW 24L) Plan, program, implement, publish, and maintain web sites using Plan, install, and manage secure Apache Web servers using server Hypertext Markup Language version 5 (HTML5), Cascading Style Sheets side programming language like PHP (PHP: Hypertext Preprocessor) to version 3 (CSS3), and JavaScript.
    [Show full text]
  • NIST SP 800-28 Version 2 Guidelines on Active Content and Mobile
    Special Publication 800-28 Version 2 (Draft) Guidelines on Active Content and Mobile Code Recommendations of the National Institute of Standards and Technology Wayne A. Jansen Theodore Winograd Karen Scarfone NIST Special Publication 800-28 Guidelines on Active Content and Mobile Version 2 Code (Draft) Recommendations of the National Institute of Standards and Technology Wayne A. Jansen Theodore Winograd Karen Scarfone C O M P U T E R S E C U R I T Y Computer Security Division Information Technology Laboratory National Institute of Standards and Technology Gaithersburg, MD 20899-8930 March 2008 U.S. Department of Commerce Carlos M. Gutierrez, Secretary National Institute of Standards and Technology James M. Turner, Acting Director GUIDELINES ON ACTIVE CONTENT AND MOBILE CODE Reports on Computer Systems Technology The Information Technology Laboratory (ITL) at the National Institute of Standards and Technology (NIST) promotes the U.S. economy and public welfare by providing technical leadership for the nation’s measurement and standards infrastructure. ITL develops tests, test methods, reference data, proof of concept implementations, and technical analysis to advance the development and productive use of information technology. ITL’s responsibilities include the development of technical, physical, administrative, and management standards and guidelines for the cost-effective security and privacy of sensitive unclassified information in Federal computer systems. This Special Publication 800-series reports on ITL’s research, guidance, and outreach efforts in computer security and its collaborative activities with industry, government, and academic organizations. National Institute of Standards and Technology Special Publication 800-28 Version 2 Natl. Inst. Stand. Technol. Spec. Publ.
    [Show full text]
  • Theme JEE and .Net OMA Implementations (Part 1)
    Application Servers Session 4 – Main Theme JEE and .Net OMA Implementations (Part 1) Dr. Jean-Claude Franchitti 1 Icons / Metaphors Information Common Realization Knowledge/Competency Pattern Governance Alignment Solution Approach 22 Web Application Servers Architectures (Evolution) Traditional client-server technology CGI frameworks Page-based extended HTML environments Distributed object computing platforms Java-Based Object Management Architectures (OMAs) Component-based computing environments Web Services platforms Next generation application servers (reflective, multimedia- and agent enabled, MDA-compliant, etc.) 3 Web Application Servers Architectures (Page-Based Extended HTML Environments Details) Application Servers for Enhanced HTML (traditional) a.k.a., Page-Based Application Servers Tag-Oriented (e.g., Macromedia ColdFusion 5.0 Server) Script Oriented (e.g., Microsoft IIS with ASP, PHP) Mostly Used to Support Standalone Web Applications Typically less expensive than standalone and IDE-based servers HTML-based development New Generation Page-Based Script-Oriented App. Servers First Generation Extensions (e.g., Microsoft IIS with COM+/ASP) Servlet/JSP Environments XSP Environment Can now be used as front-end to enterprise applications Hybrid development environments 4 Web Application Servers Architectures (Beyond Page-Based Extended HTML Environments Details) Distributed Object Computing Platforms Provide an infrastructure for distributed communications enabling Still need to merge traditional web-oriented
    [Show full text]
  • Surface Contents Author Index
    Surface Contents Author Index Mu-Lin WU, Chiou-Hsiung CHEN & Chih-Hsin CHEN DESIGN AND OPERATION OF SPATIAL DECISION SUPPORT SYSTEMS FOR WATER RESOURCE PROTECTION a b b Mu-Lin WU , Chiou-Hsiung CHEN , Chih-Hsin CHEN aCivil Engineering Dept., National Pingtung Univ. of Science and Technology, 39-13 TongZong Road, Dali, Taichung County, 41244, Taiwan [email protected] bTaipei Watershed Management Bureau, WRA, MOEA, 5, Lane 45, Sec. 1, Peihsin Road, Hsien-Ten, Taipei 231, Taiwan [email protected] Commission II, WG IC II /5 KEY WORDS: Spatial decision support systems, Water resource protection ABSTRACT: Spatial decision support systems for water resource protection at Taipei Watershed Management Bureau (TWMC) have been pursued for more than a decade. There are five townships and two watersheds under jurisdiction of TWMC. The whole area under management of water resource protection is 717 square kilometres. The management objective is to provide sustainable drinking water for a population about four millions in Taipei. Management prescriptions for water resource protection at TWMC are not confined to traditional approaches. Design of spatial decision support systems for water resource protection was mainly focused on integration of techniques such as remote sensing, geographic information systems (GIS), and global positioning systems (GPS). The major ingredients of spatial decision support systems are web-based GIS which can bring relevant information for management of water resource protection for a given location say, x and y coordinates, a single sheet of map, a township, even a watershed. All maps, satellite images, and orthophoto maps were stored in scalable vector graphics (SVG) format.
    [Show full text]
  • Best Practices for Securing E-Commerce Special Interest Group PCI Security Standards Council
    Standard: PCI Data Security Standard (PCI DSS) Date: April 2017 Authors: Best Practices for Securing E-commerce Special Interest Group PCI Security Standards Council Information Supplement: Best Practices for Securing E-commerce Information Supplement • Best Practices for Securing E-commerce • April 2017 Document Changes Date Document Version Description Pages January 2013 1.0 Initial release All January 2017 1.1 Expanded and revised Various content based upon the Securing e-Commerce Special Interest Group April 2017 1.2 Corrected entries in table, Various Section 2.7 typographical and grammatical errors The intent of this document is to provide supplemental information. Information provided here does ii not replace or supersede requirements in any PCI SSC Standard. Information Supplement • Best Practices for Securing E-commerce • April 2017 Table of Contents Document Changes ................................................................................................................................................. ii 1 Introduction ........................................................................................................................................................ 5 1.1 Background ................................................................................................................................................... 5 1.2 Intended Audience ........................................................................................................................................ 7 1.3 Terminology .................................................................................................................................................
    [Show full text]
  • Parametric Web-CAD for Box Culvert Design
    147 Parametric Web-CAD for Box Culvert Design Julian H. Kang1, Byeong-Cheol Lho2 and Sang-Rung Choi3 1Texas A&M University, [email protected] 2Sangji University, [email protected] 3Hanseok Engineering Co., Ltd., [email protected] ABSTRACT This paper presents a development of Web applications to improve the process of a box culvert design and document management using XML and SVG. The box culvert is one of the simple and common structures employed repetitively in road construction. Although parametric computer applications have demonstrated a significant amount of time savings in designing simple and repetitive structures, circulating resultant electronic documents among project participants has not been fully integrated with these applications. We developed a parametric Web application in order to facilitate not only engineering design of the box culvert but also management of resultant documents over the Web. This paper presents how XML Data Island and SVG were utilized to generate engineering drawings and display them in the Web page. Keywords: Design Automation, Web-CAD, XML, SVG projects. Web-based project management, which stores 1. INTRODUCTION information in the central repository, therefore has A box culvert is one of the common structures employed attracted many AEC firms because of its potential ability in road construction. Over the last decade, many box of building a project legacy database by collecting culverts have been constructed in Korea. The shape of electronic documents in the central repository. The these box culverts is fairly simple and typical no matter frequency and cost of the bridge repairs made a public where they were built.
    [Show full text]
  • O'reilly & Associates)
    JavaServer Pages Hans Bergsten First Edition, December 2000 ISBN: 1-56592-746-X, 572 pages JavaServer Pages shows how to develop Java-based web applications without having to be a hardcore programmer. The author provides an overview of JSP concepts and illuminates how JSP fits into the larger picture of web applications. There are chapters for web authors on generating dynamic content, handling session information, and accessing databases, as well as material for Java programmers on creating Java components and custom JSP tags for web authors to use in JSP pages.JavaServer Pages shows how to develop Java-based web applications without having to be a hardcore programmer. The author provides an overview of JSP concepts and illuminates how JSP fits into the larger picture of web applications. There are chapters for web authors on generating dynamic content, handling session information, and accessing databases, as well as material for Java programmers on creating Java components and custom JSP tags for web authors to use in JSP pages. Release Team[oR] 2001 Preface 1 What's in This Book Audience Organization About the Examples Conventions Used in This Book How to Contact Us Acknowledgments i JSP Application Basics This part of the book describes the fundamentals of HTTP (the protocol used by all web applications), how servlets and JSP are related, and how to set up a JSP development environment and install the book examples. 1 Introducing JavaServer Pages 8 1.1 What Is JavaServer Pages? 1.2 Why Use JSP? 1.3 What You Need to Get Started 2
    [Show full text]