Java4350: Form Processing with JSP

Size: px
Start display at page:

Download "Java4350: Form Processing with JSP"

Transcription

1 OpenStax-CNX module: m Java4350: Form Processing with JSP R.L. Martinez, PhD This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract This module covers form controls in addition to the action and method attributes of the form object. Characteristics of the Request object are also reviewed. 1 Table of Contents Preface (p. 1) Viewing tip (p. 1) * Images (p. 2) Preview (p. 2) General background information (p. 2) Discussion (p. 2) Homework assignment (p. 5) Summary (p. 6) What's next? (p. 6) Images (p. 7) Miscellaneous (p. 16) 2 Preface This module is one in a collection of modules designed for teaching ITSE Java Programming (Intermediate) at Austin Community College in Austin, TX. Thus far, we have covered the web programming model, HTML and CSS fundamentals, and an introduction to JSP via the JSP tags. Now we are ready to put our knowledge into practice by implementing useful examples of JSP technology. 2.1 Viewing tip I recommend that students open another copy of this module in a separate browser window and use the following links to easily nd and view the Images while you are reading about them. Version 1.4: Dec 9, :16 pm

2 OpenStax-CNX module: m Images Image 1 (p. 7). Sample Form - Amazon.com Image 2 (p. 8). Form Element of Amazon.com Image 3 (p. 8). Browser Support for novalidate Attribute Image 4 (p. 8). Common HTML Form Elements Image 5 (p. 10). Code - join_acc_code_academy.html Image 6 (p. 11). Output - join_acc_code_academy.html Image 7 (p. 13). Code - display_new_member.jsp Image 8 (p. 15). Output - display_new_member.jsp Image 9 (p. 16). Code - IncorrectAdvisory.html 3 Preview In this module we begin working with HTML forms. The capabilities enabled by HTML forms are at the core of the tremendous benets the web represents. When elements are added to HTML forms, the browser can retrieve information from users and send that data to the web server. JSP running on the server can then process the data and potentially modify the user experience based on user input. A common operation performed with user data is reading and/or writing to a database which is not addressed in this course. Web database access with Java is covered in ACC course INEW General background information Almost all websites employ forms. If the site owner would like to obtain information or feedback from users, then forms are required. Fortunately for web developers, much of the behind-the-scenes processing is performed by the browser. It is the responsibility of the developer to design the form and add form controls to capture user input. When submitted, the browser packages the data and selections supplied by the user and forwards that content to the receiving page on the server. Code on the receiving page then performs appropriate processing tasks with the data. The process of collecting, packaging, and processing form data will be discussed in this module. 5 Discussion In the early days of the World Wide Web, developers desired to move beyond the simple and static display of information into a new realm lled with interactivity. Obtaining data from site visitors was an obvious early goal. In November 1995, the HTML 2.0 specication was published which was the rst to include the form element and the HTML elements that are used within the form to capture visitor data. In HTML5, the number of form elements expanded. The additions were originally known as Web Forms 2.0 but that moniker was dropped when the new form elements were simply included in the broader HTML5 specication. 5.1 HTML Forms Forms are a powerful and essential tool for every web developer. Many web pages and almost all web sites use the form element. Developers are not limited to having one form per page but that is often the case. Look at Image 1 (p. 7) for an example of a familiar form. The Amazon form shown contains 5 form elements (at least 5 are displayed). Two textboxes (input element with attribute of type and value=text) are used to obtain the address and password from the user. Two radio buttons are used to determine customer status. Note that only one of the radio buttons can be selected at a time. That behavior is known as mutually exclusive. They are referred to a radio buttons because only one radio station could be selected at

3 OpenStax-CNX module: m a time (only one button pushed). Also notice that the "Yes" response has been preselected. That is known as the default. It is common to preselect a radio button from the group although that is not required. The last form control on the page is the "Sign in" button. It is a special type of control known as a submit button which engages the process to collect form data and send it to the destination specied by the action attribute of the form element. In the Amazon case, the action attribute species the default page in the signin directory as the destination. In Image 2 (p. 8), the actual form opening tag is depicted for the Amazon form shown in Image 1 (p. 7). The tag was captured using View Source of the Image 1 (p. 7) page. In Image 2 (p. 8), the name of the form is set to signin. In HTML5 the name attribute is not supported for anchor (a) and image (img) elements but is used with forms. In XHTML, the name attribute is deprecated (use discouraged) for the following elements: a, applet, form, frame, iframe, img, and map. However, in HTML5, name is a valid attribute for forms and is commonly used, if only for semantic value. The next attribute is method. There are 2 possible values for the method attribute, GET and POST. The value listed in Image 2 (p. 8) is POST. This means that when data is sent to the destination as specied by the action attribute, it is sent as a post transaction which the user does not see. With GET, the names and values of the form controls are collected and appended to the URL string. More on GET and POST later. The next attribute listed in the form element is id. Unlike the name attribute, id attributes are designed and required to be unique. This enables developers to apply CSS and/or run JavaScript only with that element dened by a specic id. The novalidate attribute is new to HTML5. When set to novalidate, form input data is not validated when submitted. That attribute is not supported by some browsers. See Image 3 (p. 8) for a list of the browser versions which support novalidate. The last attribute listed is action. As previously mentioned, the action attribute species the destination to which the form data will be sent when the submit button is pressed. In the case of Image 2 (p. 8), when the user presses submit, the data on the form will be collected and sent to the default page of the signin directory. The destination page will process the data according to site protocols. In this case, the address and password will be used to authenticate or deny sign-in to the user. 5.2 HMTL Form Elements There are a number of elements used on forms to collect data from users. These elements are also known as controls and objects. Like other elements on an HTML page, form elements contain attributes and values for those attributes. Image 4 (p. 8) lists some of the more popular and useful elements used on forms. With the button element, text or images can be used inside the button as the button's innerhtml property. This characteristic distinguishes it from buttons created using the input element with type button which is an empty (void) tag. Recall from the HTML and CSS Fundamentals module that void elements do not contain the innerhtml property. W3Schools.com advises using the input element to create buttons within forms since some browsers submit content between the tags of button elements (the innerhtml) instead of the value attribute. The datalist element provides a means to pre-populate a box with values that will be accessed as the user begins typing in the box. The textarea is a control type that enables users to enter paragraphs of text instead of single lines like a textbox. The other elements will be covered in code examples below. 5.3 Code join_acc_code_academy.html The code example in Image 5 (p. 10) produces the web page displayed in Image 6 (p. 11). Notice that line 6 of Image 5 (p. 10) references an external CSS le like used in previous examples. When reviewing this and all subsequent code examples, items and topics that have been covered in previous modules will not be addressed again except to reinforce the more complex concepts. For instance, it is sucient to remark that this le references a CSS le without explaining the purpose of CSS since that has been covered before. Also, a considerable amount of Java knowledge is assumed since this is the 3rd part of a 3 part intermediate Java course. Therefore, only Java code that is unique to JSP will be covered.

4 OpenStax-CNX module: m When interacting with forms, the user makes a number of submissions and/or selections with form controls. Each of the controls on the form have a name and a value attribute. And like all attributes, the name and value attributes are assigned values. The name for a control is usually designated at design time (i.e. when the developer writes the code for the page). The value attributes receive their values predominantly from user interaction. For example, textboxes have names and the values are entered by user submissions. When the submit button for a form is pressed, the browser collects all names and associated values for all controls within the form and sends that information to the destination determined by the action attribute of the form element. The names and values together are known as "name::value" pairs. The browser forwards the name::value pairs for the controls to the receiving page for processing. The rst element of note for this module appears on line 12 of Image 5 (p. 10). This form element species 2 attributes, action and method. The action method provides the destination to which the server will send submitted form data. In this case, display_new_member.jsp is called to process the form data, the name::value pairs. When the post method is used it means that the data will not be visible to the user. GET, the default and the other type of method, appends form name::value pairs to the end of the destination URL in clear view. There is a rule of thumb that is often used to decide which method, GET or POST, to use with the form. If the data submitted is just used for presentation purposes then GET should be sucient. However, if server processing like database access is planned, then POST is the better choice. Processes are known as idempotent if no change takes place. For idempotent access, GET is considered the preferred method. For extensive server processing like that typically used with JSP, it is more common to use POST and that is where we will concentrate our development. Lines 17, 21, and 25 contain input elements of type text. This means that those lines will produce text boxes which can be seen in the output of Image 6 (p. 11). Each of the textboxes have dierent names which are used to identify those controls. Again, when data is submitted (a.k.a sent to the destination specied by the action attribute), it is sent in the form of name::value pairs. In the example shown, the user entered the text "James" in the rstname textbox and therefore that will be the value associated with that textbox. So, when the submit button is pressed, the value James will be associated with the rstname textbox. The textboxes lastname=gosling and phonenumber= are other name::value pairs that will be submitted. The next control on the form is shown on lines of Image 5 (p. 10). This is known as a select control. Recall that controls are also elements and are also objects. The select elements represents the skilllevel dropdown list shown in Image 6 (p. 11). The individual selections in the dropdown list are determined by the option elements on lines of Image 5 (p. 10). Notice that each of the options has a dierent value setting. However, the options share the name setting of the select control and only one name::value pair will be submitted for the selection control in this example. So, if "Expert" is selected then the name::value pair sent will be skilllevel=expert. Note that the value is sent and not the element content between the open and closing tags like Beginner, Intermediate, and Expert. The last control on the form is the input element with the special type="submit". Submit controls are used to invoke the data packaging and submission processes. As mentioned previously, the submission destination determined by the action on line 12 of Image 5 (p. 10) processes the form contents. 5.4 Code display_new_member.jsp The code of display_new_member.jsp is shown in Image 7 (p. 13). This page is invoked (called) when the submit button is pressed on join_acc_code_academy.html. Notice that this page contains a few lines of JSP code (in green). Line 3 imports 2 packages required by the page. To see which packages are required by which components, simply remove the package and NetBeans will identify the unknown symbols. Try it. A JSP scriptlet tag on lines of Image 7 (p. 13) encloses Java code. Lines acquire the values of 4 names (rstname, lastname, phonenumber, and skilllevel) and assign those values to local String variables using the same identiers (variable names). The name::value pairs were stored in the Request content by the submission process performed by join_acc_code_academy.html. That is part of the packaging and

5 OpenStax-CNX module: m submission process previously described. The getparameter method of the Request object is used to extract the values from the Request object. On lines 24, 28, 32, and 36 of Image 7 (p. 13), JSP expression tags are used to display the values of the controls obtained by getparameter above. The results of these lines can be seen in the Information Entered table in Image 8 (p. 15). There is a form element on lines to return back to the join_acc_code_academy.html page. Data submission, the primary capability of the form element is not used in this case. It is only supplied as another brief example of a form. Usually, an anchor element would be better suited for this linking purpose. 5.5 More About the Request Object The next 2 tables displayed in Image 8 (p. 15), Unsorted Parameters and Sorted Parameters, are shown to investigate another aspect of the Request object. In the rst table, produced by lines of Image 7 (p. 13), the output of the table was explicitly dened using the expression tags. The order of the output could be completely reorganized by placing the variable skilllevel at the top, the variable rstname at the bottom, etc. When the name::value pairs are packaged in the Request object by the submission process, there is no guaranteed order of the entries. On lines of Image 7 (p. 13), the second table is output. On line 47, the getparameternames method returns an Enumeration of string objects consisting of the name portion of each of the name::value pairs stored in the Request object. An Enumeration is an interface which provides references to underlying object data. The two methods of the Enumeration interface, hasmoreelements and nextelement are used in the loop. hasmoreelements is used to test for the end of the references to the string objects (names) and nextelement is used to obtain the next name in the Enumeration. Note that the Enumeration interface does not provide a reset method and therefore getparameternames is called again on line 60. A while loop is used on lines to output the submission name::value pairs and this output is shown in the Unsorted Parameters table of Image 8 (p. 15). Notice on lines 47 and 60 the getparameternames method of the Request object is called. As mentioned above, this method returns an Enumeration of the parameter names submitted by the form. An Enumeration also provides methods to iterate through its referenced content. If the developer would like to specify order and placement of specic name and value information, then a technique like that used in lines of Image 7 (p. 13) could be employed. An alternative approach to specic placement and unsorted display would be to sort the names or values prior to output. In the Sorted Parameters table of Image 8 (p. 15), the Enumeration returned by getparameternames is cast to a Collections.list type and assigned to a List variable on line 60 of Image 7 (p. 13). Like the Enumeration, the List interface provides iteration capabilities. Furthermore, since it implements the superinterfaces Collection and Iterable, it oers more functionality than the legacy Enumeration. While the Enumeration is not yet deprecated, its use is discouraged for new development. The list created on line 60 of Image 7 (p. 13) is sorted on line 61 prior to being displayed on lines Note that the names are in alphabetical order. If line 61 were removed or commented, the output of the third table would be identical to that of the second unsorted table. To have more control over the order, control names could be assigned appropriate values like 01-rstName, 02-secondName, etc. on the form page. This would ensure values are arranged in a specied order. As an aside, notice the warning indicators on lines 45 and 58 of Image 7 (p. 13). The actual advisory which appears as a popup when hovering over the warning indicator is shown in Image 9 (p. 16). It is a bit tricky. It is states that columns for the th element are not recognized. Since the table is constructed primarily within the scriptlet section of lines of Image 7 (p. 13), the IDE does not see the table that will be dynamically created because it will only be created at runtime. The same warning appears on line 58 for the same reason. 6 Homework assignment See the JSP section in Blackboard for all JSP homework assignments.

6 OpenStax-CNX module: m Supplemental Reading Summary HTML forms are essential to the modern web. All commercial sites that establish and maintain customer relationships employ forms to capture data. Using JSP to process form submissions was the focus of this module. The form controls were covered in addition to the action and method attributes of the form object. Characteristics of the Request object were also reviewed. 8 What's next? In the next module, custom object oriented development techniques will be employed. Java classes will be introduced in the JSP to benet from the encapsulation and modularity that object orientation provides

7 OpenStax-CNX module: m Images Image 1: Sample Form - Amazon.com Figure 1: Image 1: Sample Form - Amazon.com

8 OpenStax-CNX module: m Image 2: Form Element of Amazon.com Figure 2: Image 2: Form Element of Amazon.com Image 3: Browser Support for novalidate Attribute Figure 3: Image 3: Browser Support for novalidate Attribute Image 4: Common HTML Form Elements Figure 4: Image 4: Common HTML Form Elements

9 OpenStax-CNX module: m

10 OpenStax-CNX module: m Image 5: Code - join_acc_code_academy.html Figure 5: Image 5: Code - join_acc_code_academy.html

11 OpenStax-CNX module: m Image 6: Output - join_acc_code_academy.html Figure 6: Image 6: Output - join_acc_code_academy.html

12 OpenStax-CNX module: m

13 OpenStax-CNX module: m Image 7: Code - display_new_member.jsp Figure 7: Image 7: Code - display_new_member.jsp

14 OpenStax-CNX module: m

15 OpenStax-CNX module: m Image 8: Output - display_new_member.jsp Figure 8: Image 8: Output - display_new_member.jsp

16 OpenStax-CNX module: m Image 9: Code - IncorrectAdvisory.html Figure 9: Image 9: Code - IncorrectAdvisory.html 10 Miscellaneous This section contains a variety of miscellaneous information. note: Housekeeping material Module name: Java4350: Form Processing with JSP Author: Dr. R.L.Martinez Maintainer: R.G.Baldwin File: Java4350.htm Published: 11/27/13 Revised: 12/09/13 note: Disclaimers: Financial : Although the Connexions site makes it possible for you to download a PDF le for this module at no charge, and also makes it possible for you to purchase a pre-printed version of the PDF le, you should be aware that some of the HTML elements in this module may not translate well into PDF. I also want you to know that, I receive no nancial compensation from the Connexions website even if you purchase the PDF version of the module. In the past, unknown individuals have copied my modules from cnx.org, converted them to Kindle books, and placed them for sale on Amazon.com showing me as the author. I neither receive compensation for those sales nor do I know who does receive compensation. If you purchase such a book, please be aware that it is a copy of a module that is freely available on cnx.org and that it was made and published without my prior knowledge. Aliation : I am a professor of Computer Information Technology at Austin Community College in Austin, TX.

Java4320: Web Programming Model *

Java4320: Web Programming Model * OpenStax-CNX module: m48058 1 Java4320: Web Programming Model * R.L. Martinez, PhD This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 Abstract The purpose

More information

Java4340r: Review. R.G. (Dick) Baldwin. 1 Table of Contents. 2 Preface

Java4340r: Review. R.G. (Dick) Baldwin. 1 Table of Contents. 2 Preface OpenStax-CNX module: m48187 1 Java4340r: Review R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 Abstract This module contains review

More information

Java OOP: Java Documentation

Java OOP: Java Documentation OpenStax-CNX module: m45117 1 Java OOP: Java Documentation R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Learn to use

More information

Java3018: Darkening, Brightening, and Tinting the Colors in a Picture *

Java3018: Darkening, Brightening, and Tinting the Colors in a Picture * OpenStax-CNX module: m44234 1 Java3018: Darkening, Brightening, and Tinting the Colors in a Picture * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution

More information

OpenStax-CNX module: m Java3002r Review * R.G. (Dick) Baldwin

OpenStax-CNX module: m Java3002r Review * R.G. (Dick) Baldwin OpenStax-CNX module: m45762 1 Java3002r Review * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 Abstract This module contains

More information

Java0078 Java OOP Callbacks - II *

Java0078 Java OOP Callbacks - II * OpenStax-CNX module: m59589 1 Java0078 Java OOP Callbacks - II * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 Abstract A previous

More information

Hs01006: Language Features, Arithmetic Operators *

Hs01006: Language Features, Arithmetic Operators * OpenStax-CNX module: m37146 1 Hs01006: Language Features, Arithmetic Operators * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0

More information

Java4570: Session Tracking using Cookies *

Java4570: Session Tracking using Cookies * OpenStax-CNX module: m48571 1 Java4570: Session Tracking using Cookies * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 Abstract

More information

INEW Advanced Java Programming. Collection Editor: R.G. (Dick) Baldwin

INEW Advanced Java Programming. Collection Editor: R.G. (Dick) Baldwin INEW2338 - Advanced Java Programming Collection Editor: R.G. (Dick) Baldwin INEW2338 - Advanced Java Programming Collection Editor: R.G. (Dick) Baldwin Authors: R.G. (Dick) Baldwin R.L. Martinez, PhD

More information

Authoring OpenStax Documents in Apache OpenOffice Writer *

Authoring OpenStax Documents in Apache OpenOffice Writer * OpenStax-CNX module: m60462 1 Authoring OpenStax Documents in Apache OpenOffice Writer * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License

More information

Java3002: Creating and Manipulating Turtles and Pictures in a World Object

Java3002: Creating and Manipulating Turtles and Pictures in a World Object OpenStax-CNX module: m44149 1 Java3002: Creating and Manipulating Turtles and Pictures in a World Object R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons

More information

AP Computer Science A, Clarification of the Java Subset. By: R.G. (Dick) Baldwin

AP Computer Science A, Clarification of the Java Subset. By: R.G. (Dick) Baldwin AP Computer Science A, Clarification of the Java Subset By: R.G. (Dick) Baldwin AP Computer Science A, Clarification of the Java Subset By: R.G. (Dick) Baldwin Online: < http://cnx.org/content/col11279/1.4/

More information

Java3002: Creating and Manipulating Turtles and Pictures in a World Object *

Java3002: Creating and Manipulating Turtles and Pictures in a World Object * OpenStax-CNX module: m44149 1 Java3002: Creating and Manipulating Turtles and Pictures in a World Object * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons

More information

The json-simple Java Library. By: R.G. (Dick) Baldwin

The json-simple Java Library. By: R.G. (Dick) Baldwin The json-simple Java Library By: R.G. (Dick) Baldwin The json-simple Java Library By: R.G. (Dick) Baldwin Online: < http://cnx.org/content/col12010/1.4/ > OpenStax-CNX This selection and arrangement of

More information

Accessible Objected-Oriented Programming Concepts for Blind Students using Java. By: R.G. (Dick) Baldwin

Accessible Objected-Oriented Programming Concepts for Blind Students using Java. By: R.G. (Dick) Baldwin Accessible Objected-Oriented Programming Concepts for Blind Students using Java By: R.G. (Dick) Baldwin Accessible Objected-Oriented Programming Concepts for Blind Students using Java By: R.G. (Dick)

More information

Using Flex 3 in a Flex 4 World *

Using Flex 3 in a Flex 4 World * OpenStax-CNX module: m34631 1 Using Flex 3 in a Flex 4 World * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Learn how

More information

MathML Editor: The Basics *

MathML Editor: The Basics * OpenStax-CNX module: m26312 1 MathML Editor: The Basics * Natalie Weber This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract This module provides

More information

Morse1010 Translating Text to Morse Code *

Morse1010 Translating Text to Morse Code * OpenStax-CNX module: m60489 1 Morse1010 Translating Text to Morse Code * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 Abstract

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information

Polymorphism - The Big Picture *

Polymorphism - The Big Picture * OpenStax-CNX module: m34447 1 Polymorphism - The Big Picture * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Learn the essence

More information

5 Choosing keywords Initially choosing keywords Frequent and rare keywords Evaluating the competition rates of search

5 Choosing keywords Initially choosing keywords Frequent and rare keywords Evaluating the competition rates of search Seo tutorial Seo tutorial Introduction to seo... 4 1. General seo information... 5 1.1 History of search engines... 5 1.2 Common search engine principles... 6 2. Internal ranking factors... 8 2.1 Web page

More information

Lecture : 3. Practical : 2. Course Credit. Tutorial : 0. Total : 5. Course Learning Outcomes

Lecture : 3. Practical : 2. Course Credit. Tutorial : 0. Total : 5. Course Learning Outcomes Course Title Course Code WEB DESIGNING TECHNOLOGIES DCE311 Lecture : 3 Course Credit Practical : Tutorial : 0 Total : 5 Course Learning Outcomes At end of the course, students will be able to: Understand

More information

HTML. HTML Evolution

HTML. HTML Evolution Overview stands for HyperText Markup Language. Structured text with explicit markup denoted within < and > delimiters. Not what-you-see-is-what-you-get (WYSIWYG) like MS word. Similar to other text markup

More information

Contact: Systems Alliance, Inc. Executive Plaza III McCormick Road, Suite 1203 Hunt Valley, Maryland Phone: / 877.

Contact: Systems Alliance, Inc. Executive Plaza III McCormick Road, Suite 1203 Hunt Valley, Maryland Phone: / 877. Contact: Systems Alliance, Inc. Executive Plaza III 11350 McCormick Road, Suite 1203 Hunt Valley, Maryland 21031 Phone: 410.584.0595 / 877.SYSALLI Fax: 410.584.0594 http://www.systemsalliance.com http://www.siteexecutive.com

More information

Chapter 1 FORMS. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 FORMS. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 FORMS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: How to use forms and the related form types. Controls for interacting with forms. Menus and presenting users with

More information

CS Exam 1 Review Suggestions - Spring 2017

CS Exam 1 Review Suggestions - Spring 2017 CS 328 - Exam 1 Review Suggestions p. 1 CS 328 - Exam 1 Review Suggestions - Spring 2017 last modified: 2017-02-16 You are responsible for material covered in class sessions and homeworks; but, here's

More information

Read & Download (PDF Kindle) Murach's HTML5 And CSS3, 3rd Edition

Read & Download (PDF Kindle) Murach's HTML5 And CSS3, 3rd Edition Read & Download (PDF Kindle) Murach's HTML5 And CSS3, 3rd Edition "Until now, my websites looked great but have been coded with what seems like 'duct-tape and bubble-gum' methods, just for appearances

More information

This tutorial has been prepared for beginners to help them understand the simple but effective SEO characteristics.

This tutorial has been prepared for beginners to help them understand the simple but effective SEO characteristics. About the Tutorial Search Engine Optimization (SEO) is the activity of optimizing web pages or whole sites in order to make them search engine friendly, thus getting higher positions in search results.

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

Getting Started with Cisco Pulse

Getting Started with Cisco Pulse CHAPTER 2 These topics describe what you need know when initially logging into Cisco Pulse. Client and Browser Requirements, page 2-1 Logging Into Cisco Pulse, page 2-2 Getting Familiar with Your Home

More information

Website Development with HTML5, CSS and Bootstrap

Website Development with HTML5, CSS and Bootstrap Contact Us 978.250.4983 Website Development with HTML5, CSS and Bootstrap Duration: 28 hours Prerequisites: Basic personal computer skills and basic Internet knowledge. Course Description: This hands on

More information

Inter-Project Dependencies in Java Software Ecosystems

Inter-Project Dependencies in Java Software Ecosystems Inter-Project Dependencies Inter-Project Dependencies in Java Software Ecosystems in Java Software Ecosystems Antonín Procházka 1, Mircea Lungu 2, Karel Richta 3 Antonín Procházka 1, Mircea Lungu 2, Karel

More information

CIS Homework 9

CIS Homework 9 CIS 318 - Homework 9 p. 1 Deadline: Due by 11:59 pm on FRIDAY, April 29 How to submit: CIS 318 - Homework 9 Submit your files for this homework using ~st10/318submit on nrs-labs, with a homework number

More information

Server-Side Web Programming: Python (Part 1) Copyright 2017 by Robert M. Dondero, Ph.D. Princeton University

Server-Side Web Programming: Python (Part 1) Copyright 2017 by Robert M. Dondero, Ph.D. Princeton University Server-Side Web Programming: Python (Part 1) Copyright 2017 by Robert M. Dondero, Ph.D. Princeton University 1 Objectives You will learn about Server-side web programming in Python Common Gateway Interface

More information

Relativity Designer Installation Guide

Relativity Designer Installation Guide Liant Software Corporation Relativity Designer Installation Guide Version 5 Copyright 1994-2003 by Liant Software Corporation. All rights reserved. Printed in U.S.A. No part of this publication may be

More information

CSE 336. Introduction to Programming. for Electronic Commerce. Why You Need CSE336

CSE 336. Introduction to Programming. for Electronic Commerce. Why You Need CSE336 CSE 336 Introduction to Programming for Electronic Commerce Why You Need CSE336 Concepts like bits and bytes, domain names, ISPs, IPAs, RPCs, P2P protocols, infinite loops, and cloud computing are strictly

More information

CSC 8205 Advanced Java

CSC 8205 Advanced Java Please read this first: 1) All the assignments must be submitted via blackboard account. 2) All the assignments for this course are posted below. The due dates for each assignment are announced on blackboard.

More information

1.264 Lecture 12. HTML Introduction to FrontPage

1.264 Lecture 12. HTML Introduction to FrontPage 1.264 Lecture 12 HTML Introduction to FrontPage HTML Subset of Structured Generalized Markup Language (SGML), a document description language SGML is ISO standard Current version of HTML is version 4.01

More information

Step 1. Final Grade Roster Submission. IT Department Printed on 05/21/2012 Page 1. Steps to Submit Grades. Step 1. Step 2. Step 3

Step 1. Final Grade Roster Submission. IT Department Printed on 05/21/2012 Page 1. Steps to Submit Grades. Step 1. Step 2. Step 3 /Notes 1. Log into CUNYfirst Enter your username and password AND Click on the Go button icon 2. From the Enterprise Menu, select the HR/Campus Solutions link IT Department Printed on 05/21/2012 Page 1

More information

Document Object Model. Overview

Document Object Model. Overview Overview The (DOM) is a programming interface for HTML or XML documents. Models document as a tree of nodes. Nodes can contain text and other nodes. Nodes can have attributes which include style and behavior

More information

ithenticate User Guide Getting Started Folders Managing your Documents The Similarity Report Settings Account Information

ithenticate User Guide Getting Started Folders Managing your Documents The Similarity Report Settings Account Information ithenticate User Guide Getting Started Folders Managing your Documents The Similarity Report Settings Account Information 1 Getting Started Whether you are a new user or a returning one, to access ithenticate

More information

Kingdom of Saudi Arabia Ministry of Higher Education College of Computer & Information Sciences Majmaah University. Course Profile

Kingdom of Saudi Arabia Ministry of Higher Education College of Computer & Information Sciences Majmaah University. Course Profile Kingdom of Saudi Arabia Ministry of Higher Education College of Computer & Information Sciences Majmaah University Course Profile Course Name:- Design and Web Programming Course Code:- CEN 300/CEN 218

More information

Website review excitesubmit.com

Website review excitesubmit.com Website review excitesubmit.com Generated on November 14 2018 12:00 PM The score is 45/100 SEO Content Title ExciteSubmit - FREE Search Engine Submission Service Length : 52 Perfect, your title contains

More information

Alpha College of Engineering and Technology. Question Bank

Alpha College of Engineering and Technology. Question Bank Alpha College of Engineering and Technology Department of Information Technology and Computer Engineering Chapter 1 WEB Technology (2160708) Question Bank 1. Give the full name of the following acronyms.

More information

WebQuest. Question-File Quick-Start Instructions

WebQuest. Question-File Quick-Start Instructions Contents WebQuest Question-File Quick-Start Instructions 1 Introduction 1 2 Where to Start 2 2.1 Questionnaire on Paper............................. 2 2.2 Questionnaire in Electronic Format (Word, PDF,

More information

Ministry of Higher Education and Scientific Research

Ministry of Higher Education and Scientific Research Morning Study Department of information technology Institute of Technical - Duhok. University of Polytechnic Duhok. Subject: Web Technology Course book for 2nd year. Lecturer s name: MSc. Ayman Nashwan

More information

Collection Information Menu. Navigation, pages, and related-links quickstart guide

Collection Information Menu. Navigation, pages, and related-links quickstart guide Collection Information Menu Navigation, pages, and related-links quickstart guide FL-Islandora users can now extend the Collection theming functionality provided by the BANNER and DESC-TEXT datastreams

More information

How to make a "hello world" program in Java with Eclipse *

How to make a hello world program in Java with Eclipse * OpenStax-CNX module: m43473 1 How to make a "hello world" program in Java with Eclipse * Hannes Hirzel Based on How to make a "hello world" program in Java. by Rodrigo Rodriguez This work is produced by

More information

Javelin Workbench Tutorial. Version 3.0 September, 2009

Javelin Workbench Tutorial. Version 3.0 September, 2009 Javelin Workbench Tutorial Version 3.0 September, 2009 OVERVIEW The Javelin Workbench Beginner Tutorial walks you through the steps of building online feedback forms for the purposes of data collection.

More information

User Guide. Chapter 6. Teacher Pages

User Guide. Chapter 6. Teacher Pages User Guide Chapter 6 s Table of Contents Introduction... 5 Tips for s... 6 Pitfalls... 7 Key Information... 8 I. How to add a... 8 II. How to Edit... 10 SharpSchool s WYSIWYG Editor... 11 Publish a...

More information

ZENworks Reporting System Reference. January 2017

ZENworks Reporting System Reference. January 2017 ZENworks Reporting System Reference January 2017 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights, patent

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 INFORMATION TECHNOLOGY TUTORIAL QUESTION BANK Course Name Course Code Class Branch : Web Technologies : ACS006 : B. Tech

More information

The Processing Programming Environment. By: Richard Baldwin

The Processing Programming Environment. By: Richard Baldwin The Processing Programming Environment By: Richard Baldwin The Processing Programming Environment By: Richard Baldwin Online: < http://cnx.org/content/col11492/1.5/ > C O N N E X I O N S Rice University,

More information

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

GAME Motion Displacement and Vectors

GAME Motion Displacement and Vectors OpenStax-CNX module: m45006 1 GAME 2302-0360 Motion Displacement and Vectors R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract

More information

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 WEB TECHNOLOGIES A COMPUTER SCIENCE PERSPECTIVE CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson reserved. 0-13-185603-0 HTML HELLO WORLD! Document

More information

JSF Tags. This tutorial will cover a number of useful JSF tags. For a complete listing of available JSF tags consult the Oracle documentation at:

JSF Tags. This tutorial will cover a number of useful JSF tags. For a complete listing of available JSF tags consult the Oracle documentation at: Overview @author R.L. Martinez, Ph.D. Java EE 7 provides a comprehensive list of JSF tags to support JSF web development. The tags are represented in XHTML format on the server and are converted into HTML

More information

Web Site Design and Development Lecture 24

Web Site Design and Development Lecture 24 Web Site Design and Development Lecture 24 CS 0134 Fall 2018 Tues and Thurs 1:00 2:15PM Useful CSS for forms Given the nature of form controls, they come with a lot of default styling but there are still

More information

Web Designing Course

Web Designing Course Web Designing Course Course Summary: HTML, CSS, JavaScript, jquery, Bootstrap, GIMP Tool Course Duration: Approx. 30 hrs. Pre-requisites: Familiarity with any of the coding languages like C/C++, Java etc.

More information

VERINT EFM 8.0 Release Overview

VERINT EFM 8.0 Release Overview VERINT EFM 8.0 Release Overview In January of 2015 Verint will release version 8.0 of the Enterprise Feedback Management (EFM) solution. Verint hosted SaaS customers will receive this update as part of

More information

Oracle Eloqua Legacy Authenticated Microsites and Contact Users. Configuration Guide

Oracle Eloqua Legacy Authenticated Microsites and Contact Users. Configuration Guide Oracle Eloqua Legacy Authenticated Microsites and Contact Users Configuration Guide 2019 Oracle Corporation. All rights reserved 04-Jan-2019 Contents 1 Authenticated microsites 3 2 Creating authenticated

More information

Table of content. Creating signup form Associating automation tools to signup form Signup form reports...42

Table of content. Creating signup form Associating automation tools to signup form Signup form reports...42 A User Guide Signup forms are the most popular tools for building a subscriber database. They let your website visitors become subscribers by entering basic details such as name and email address. The

More information

Accessibility of EPiServer s Sample Templates

Accessibility of EPiServer s Sample Templates Accessibility of EPiServer s Templates An evaluation of the accessibility of EPiServer s sample according to current recommendations and guidelines elaborated by the World Wide Web Consortium s (W3C) Web

More information

Online Submission Tool: Packet Management

Online Submission Tool: Packet Management Online Submission Tool: Packet Management OLS: Packet Management December 2012 Disclaimer The materials in this reference guide are for demonstration purposes only. The forms are subject to change at any

More information

User Manual. Revview Central

User Manual. Revview Central for Revview Central (Journal Office) Powered by TNQ Technologies COPYRIGHT NOTICE 2018 TNQ Technologies. All rights reserved. Document History S. No. Version No. Revision No. Release Date Remarks 1. 1

More information

Website Setup & Assignment Publishing (Tomcat)

Website Setup & Assignment Publishing (Tomcat) In this course, students upload assignments to their websites hosted on the coislinux.austincc.edu server (in addition to submitting to Blackboard (Bb)). Each student is supplied with a password protected

More information

Creating and Building Websites

Creating and Building Websites Creating and Building Websites Stanford University Continuing Studies CS 21 Mark Branom branom@alumni.stanford.edu Course Web Site: http://web.stanford.edu/group/csp/cs21 Week 7 Slide 1 of 25 Week 7 Unfinished

More information

FORM VALIDATION. June 2016 IJIRT Volume 3 Issue 1 ISSN: Himanshu Kapoor Dronacharya College Of Engineering, Khentawas, Gurgaon

FORM VALIDATION. June 2016 IJIRT Volume 3 Issue 1 ISSN: Himanshu Kapoor Dronacharya College Of Engineering, Khentawas, Gurgaon FORM VALIDATION Himanshu Kapoor Dronacharya College Of Engineering, Khentawas, Gurgaon I. INTRODUCTION The forms in HTML provide a very simple and reliable user interface to collect data from the user

More information

UCD School of Information and Library Studies. IS30020: Web Publishing

UCD School of Information and Library Studies. IS30020: Web Publishing UCD School of Information and Library Studies IS30020: Web Publishing Module Coordinator: Dr Judith Wusteman Office: SILS 110, Email: judith.wusteman@ucd.ie, Tel: 716 7612 Office hour Semester 1 (Sept

More information

GAME : Vector Addition *

GAME : Vector Addition * OpenStax-CNX module: m45012 1 GAME 2302-0125: Vector Addition * R.G. (Dick) Baldwin This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 4.0 Abstract Learn

More information

Web Application Development (WAD) V th Sem BBAITM (Unit 4) By: Binit Patel

Web Application Development (WAD) V th Sem BBAITM (Unit 4) By: Binit Patel Web Application Development (WAD) V th Sem BBAITM (Unit 4) By: Binit Patel Working with Forms: A very popular way to make a web site interactive is using HTML based forms by the site. Using HTML forms,

More information

Java Applets, etc. Instructor: Dmitri A. Gusev. Fall Lecture 25, December 5, CS 502: Computers and Communications Technology

Java Applets, etc. Instructor: Dmitri A. Gusev. Fall Lecture 25, December 5, CS 502: Computers and Communications Technology Java Applets, etc. Instructor: Dmitri A. Gusev Fall 2007 CS 502: Computers and Communications Technology Lecture 25, December 5, 2007 CGI (Common Gateway Interface) CGI is a standard for handling forms'

More information

TUTORIAL QUESTION BANK

TUTORIAL QUESTION BANK + INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 COMPUTER SCIENCE AND ENGINEERING TUTORIAL QUESTION BANK Course Name Course Code Class Branch : Web Technologies : ACS006

More information

Folios & Web Pages. 71 WEST 23RD STREET, NEW YORK, NY T e

Folios & Web Pages. 71 WEST 23RD STREET, NEW YORK, NY T e Folios & Web Pages 71 WEST 23RD STREET, NEW YORK, NY 10010 T 1.800.311.5656 e help@taskstream.com Table of Contents About the Folios & Web Pages Tool... 1 Create a New Folio or Web Page... 3 Manage Existing

More information

S1 Informatic Engineering

S1 Informatic Engineering S1 Informatic Engineering Advanced Software Engineering WebE Design By: Egia Rosi Subhiyakto, M.Kom, M.CS Informatic Engineering Department egia@dsn.dinus.ac.id +6285640392988 SYLLABUS 8. Web App. Process

More information

CTI Short Learning Programme in Internet Development Specialist

CTI Short Learning Programme in Internet Development Specialist CTI Short Learning Programme in Internet Development Specialist Module Descriptions 2015 1 Short Learning Programme in Internet Development Specialist (10 months full-time, 25 months part-time) Computer

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

VIRGINIA TECH. FlickrIDR. A web-based multimodal search interface based on the SuperIDR

VIRGINIA TECH. FlickrIDR. A web-based multimodal search interface based on the SuperIDR VIRGINIA TECH FlickrIDR A web-based multimodal search interface based on the SuperIDR Client: Uma Murthy Class: CS4624 University: Virginia Tech City: Blacksburg, VA Kaslin Fields, James Kaplan, Martin

More information

Dreamweaver. Links and Tables

Dreamweaver. Links and Tables Dreamweaver Links and Tables WORKSHOP DESCRIPTION... 1 Overview 1 Prerequisites 1 Objectives 1 ADDING HYPERLINKS... 2 New Text Hyperlink 2 Existing Text or Image Hyperlink 2 EXERCISE 1 3 New Text E-mail

More information

The Book Of Javascript A Practical Guide To

The Book Of Javascript A Practical Guide To The Book Of Javascript A Practical Guide To Interactive Web Pages Pdf 2012 / 181 Pages / ISBN: 1937560279 / PDF / 5 MB. Whether your The Book of JavaScript, 2nd Edition A Practical Guide to Interactive

More information

CTI Higher Certificate in Information Systems (Internet Development)

CTI Higher Certificate in Information Systems (Internet Development) CTI Higher Certificate in Information Systems (Internet Development) Module Descriptions 2015 1 Higher Certificate in Information Systems (Internet Development) (1 year full-time, 2½ years part-time) Computer

More information

Beginner s Guide to ACD5

Beginner s Guide to ACD5 Beginner s Guide to ACD5 AIA Contract Documents Online Service for Single-Users A step-by-step guide to creating, editing, sharing and managing contract documents Beginner s Guide to ACD5 AIA Contract

More information

CS 215 Software Design Homework 3 Due: February 28, 11:30 PM

CS 215 Software Design Homework 3 Due: February 28, 11:30 PM CS 215 Software Design Homework 3 Due: February 28, 11:30 PM Objectives Specifying and checking class invariants Writing an abstract class Writing an immutable class Background Polynomials are a common

More information

HTML and CSS COURSE SYLLABUS

HTML and CSS COURSE SYLLABUS HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page

More information

Cisco TEO Adapter Guide for

Cisco TEO Adapter Guide for Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 Text Part

More information

Car Sounds with JavaScript

Car Sounds with JavaScript Lesson Plan: Car Sounds with JavaScript By Joy Kesten Grades 5-9 Big Ideas: Writing code is a series of instructions, organized in a structure. JavaScript is a front end programming language used to add

More information

Export and Import Authority Records

Export and Import Authority Records OCLC Connexion Browser Guides Export and Import Authority Records Last updated: May 2016 OCLC Online Computer Library Center, Inc. 6565 Kilgour Place Dublin, OH 43017-3395 Revision History Date Section

More information

DAY 2. Creating Forms

DAY 2. Creating Forms DAY 2 Creating Forms LESSON LEARNING TARGETS I can identify and apply the different HTML tags to create a Web page form. I can describe the ways data is sent in a form in namevalue pairs. I can create

More information

CS 268 Lab 6 Eclipse Test Server and JSPs

CS 268 Lab 6 Eclipse Test Server and JSPs CS 268 Lab 6 Eclipse Test Server and JSPs Setting up Eclipse The first thing you will do is to setup the Eclipse Web Server environment for testing. This will create a local web server running on your

More information

HTML and JavaScript: Forms and Validation

HTML and JavaScript: Forms and Validation HTML and JavaScript: Forms and Validation CISC 282 October 18, 2017 Forms Collection of specific elements know as controls Allow the user to enter information Submit the data to a web server Controls are

More information

Cisco TEO Adapter Guide for Microsoft Windows

Cisco TEO Adapter Guide for Microsoft Windows Cisco TEO Adapter Guide for Microsoft Windows Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800

More information

Java: The Ultimate Guide To Learn Java Programming And Computer Hacking (java For Beginners, Java For Dummies, Java Apps, Hacking) (HTML,

Java: The Ultimate Guide To Learn Java Programming And Computer Hacking (java For Beginners, Java For Dummies, Java Apps, Hacking) (HTML, Java: The Ultimate Guide To Learn Java Programming And Computer Hacking (java For Beginners, Java For Dummies, Java Apps, Hacking) (HTML, Javascript,... Developers, Coding, CSS, PHP) (Volume 2) By Matt

More information

Web Community Manager 2.18 Release Notes

Web Community Manager 2.18 Release Notes New or Changed Functionality or User Experience Update to Google Custom Search In order to support updates from Google regarding Site Search, clients who have not previously entered a Google Account ID

More information

Kaltura Video Package for Moodle 2.x Quick Start Guide. Version: 3.1 for Moodle

Kaltura Video Package for Moodle 2.x Quick Start Guide. Version: 3.1 for Moodle Kaltura Video Package for Moodle 2.x Quick Start Guide Version: 3.1 for Moodle 2.0-2.4 Kaltura Business Headquarters 5 Union Square West, Suite 602, New York, NY, 10003, USA Tel.: +1 800 871 5224 Copyright

More information

Blackboard 5. Instructor Manual Level One Release 5.5

Blackboard 5. Instructor Manual Level One Release 5.5 Bringing Education Online Blackboard 5 Instructor Manual Level One Release 5.5 Copyright 2001 by Blackboard Inc. All rights reserved. No part of the contents of this manual may be reproduced or transmitted

More information

Welcome. Orientation to online CPS102 Computer Science 2 (Java 2)

Welcome. Orientation to online CPS102 Computer Science 2 (Java 2) Welcome Orientation to online CPS102 Computer Science 2 (Java 2) All online courses use Blackboard system, as soon as you login Blackboard in college s pipeline, please complete Blackboard Learn Student

More information

Using the VisualAge for Java WebSphere Test Environment

Using the VisualAge for Java WebSphere Test Environment Using the VisualAge for Java WebSphere Test Environment By Craig Pelkie Many iseries 400 shops are starting to move their development efforts to web enablement using WebSphere Application Server (WAS).

More information

Chapter 16 The World Wide Web

Chapter 16 The World Wide Web Chapter Goals Chapter 16 Compare and contrast the Internet and the World Wide Web Describe general Web processing Write basic documents Describe several specific tags and their purposes 2 Chapter Goals

More information

The AWT Package, An Overview

The AWT Package, An Overview Richard G Baldwin (512) 223-4758, baldwin@austin.cc.tx.us, http://www2.austin.cc.tx.us/baldwin/ The AWT Package, An Overview Java Programming, Lecture Notes # 110, Revised 02/21/98. Preface Introduction

More information

Vendor: IBM. Exam Code: C Exam Name: IBM Security Identity Manager V6.0 Implementation. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: IBM Security Identity Manager V6.0 Implementation. Version: Demo Vendor: IBM Exam Code: C2150-197 Exam Name: IBM Security Identity Manager V6.0 Implementation Version: Demo Question No : 1 Which is true for the relationship between provisioning policies, services, and

More information