<< < 31 32 33 34 35 36 37 38 39 40 41 > >>   Sort: Date

Missing JSP and SSI Includes
How do I mix JSP and SSI #include? If you're just including raw HTML, use the #include directive as usual inside your .jsp file. &lt;!--#include file="data.inc"--&gt;
2007-04-03, 5567👍, 0💬

How To Reduce the Display Size of an Image
How To Reduce the Display Size of an Image? - XHTML 1.0 Tutorials - Understanding Inline Images and Image Maps If an image embedded inline is too big when displayed in a browser, you can use "width" and "height" attributes to reduce the image's display size. The display width and height should be pr...
2007-05-12, 5558👍, 0💬

How To Enter Comments into XHTML documents
How To Enter Comments into XHTML documents? - XHTML Tutorials - Introduction To Tag and Attribute Syntax If you want to enter comments into an XHTML document, you can use the comment tag: "&lt;!-- ... --&gt;". Here are some good examples of XHTML comments: &lt;!-- Start north banner --&a...
2007-05-12, 5558👍, 0💬

Preventing the Creation of Sessions in JSP Pages
How do you prevent the Creation of a Session in a JSP Page and why? By default, a JSP page will automatically create a session for the request if one does not exist. However, sessions consume resources and if it is not necessary to maintain a session, one should not be created. For example, a market...
2007-04-03, 5558👍, 0💬

Setting Session Timeout Period
Is there a way I can set the inactivity lease period on a per-session basis? Typically, a default inactivity lease period for all sessions is set within your JSPengine admin screen or associated properties file. However, if your JSP engine supports the Servlet 2.1 API, you can manage the inactivity ...
2007-04-03, 5558👍, 0💬

What are abstract classes
What are abstract classes ? Following are features of a abstract class :- ã You can not create a object of abstract class ã Abstract class is designed to act as a base class (to be inherited by other classes). Abstract class is a design concept in program development and provides a base upon whic...
2007-10-23, 5557👍, 0💬

What Are Hyper Links
What Are Hyper Links? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs A hyper link is a special text in an XHTML document defined with a hidden link to another resource on the Internet. While viewing the XHTML document, you can click the hyper link, the browser will follow the hidden link...
2007-05-12, 5557👍, 0💬

What Is XHTML
What Is XHTML? - XHTML FAQs - Introduction To XHTML 1.0 XHTML stands for Extensible Hyper-Text Markup Language. XHTML is a scripting language that authors can use to embed text tags into a text document to add structural and formatting information. More precisely, XHTML gives authors the means to: P...
2007-05-12, 5556👍, 0💬

How To List All User Accounts
How To List All User Accounts? - Oracle DBA FAQ - Managing Oracle User Accounts, Schema and Privileges User accounts can be accessed through a system view called ALL_USERS. A simple SELECT statement can be used to get a list of all user accounts. Try the following script: >.\bin\sqlplus /nolog SQL> ...
2007-05-02, 5556👍, 0💬

Servlet Communicates with JSP Pages
How does a servlet communicate with a JSP page? The following code snippet shows how a servlet instantiates a bean and initializes it with FORM data posted by a browser. The bean is then placed into the request, and the call is then forwarded to the JSP page, Bean1.jsp, by means of a request dispatc...
2007-04-03, 5555👍, 0💬

How To Convert the First Character to Upper Case
How To Convert the First Character to Upper Case? - PHP Script Tips - PHP Built-in Functions for Strings If you are processing an article, you may want to capitalize the first character of a sentence by using the ucfirst() function. You may also want to capitalize the first character of every words ...
2007-04-21, 5554👍, 0💬

How To Get the Last ID Assigned by MySQL
How To Get the Last ID Assigned by MySQL? - PHP Script Tips - Working with MySQL Database If you use an ID column with AUTO_INCREMENT attribute, you can use the mysql_insert_id() function to get the last ID value assigned by the MySQL server, as shown in the sample script below: &lt;?php include...
2007-04-18, 5554👍, 0💬

Is Struts efficient
Is Struts efficient? Yes. The Struts is not only thread-safe but thread-dependent (instantiates each Action once and allows other requests to be threaded through the original object. ActionForm beans minimize subclass code and shorten subclass hierarchies. The Struts tag libraries provide general-pu...
2007-12-07, 5552👍, 0💬

How To Get a List of All Tables in the Database
How To Get a List of All Tables in the Database? - Oracle DBA FAQ - Introduction to Oracle SQL Developer If you don't like to use a SELECT statement to get a list of all tables in the current database, you can use the Reports view to do this as shown in the following tutorial example: Click menu Vie...
2007-04-27, 5552👍, 0💬

How To Revoke User Privileges
How To Revoke User Privileges? - MySQL FAQs - Managing User Accounts and Access Privileges If your want remove some granted user privileges, you can use the "REVOKE privilegeName ..." command. You can only revoke privileges in the same way as they were granted. For example, you can not revoke a priv...
2007-05-08, 5551👍, 0💬

Where Are User Privileges Stored on the Server
Where Are User Privileges Stored on the Server? - MySQL FAQs - Managing User Accounts and Access Privileges MySQL server has a system database, which hosts a number of system tables to system related information like user privileges. Depending on the scope levels, granted user privileges are stored ...
2007-05-08, 5551👍, 0💬

How do I include static files within a JSP page?
How do I include static files within a JSP page? Static resources should always be included using the JSP include directive. This way, the inclusion is performed just once during the translation phase. The following example shows the syntax: &lt; % @ include file="copyright.html" % &gt; Do n...
2013-08-01, 5550👍, 0💬

How To Closing an XHTML Element
How To Closing an XHTML Element? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Every XHTML element must be closed. There are two ways to close an XHTML element: Using a closing tag, which is the element name prefixed with "/" and enclosed in a pair of angle brackets: "&lt;" and "&...
2007-05-12, 5550👍, 0💬

How can I read/write OS Files from Forms?
How can I read/write OS Files from Forms? OS files can be read/written from Forms using the TEXT_IO package in Forms. The TEXT_IO package has a datatype FILE_HANDLE. It also has procedures FCLOSE, GET_LINE, NEW_LINE, PUT, PUT_LINE & PUTF and a function FOPEN. Example: DECLARE file1 TEXT_IO.FILE_...
2011-05-03, 5548👍, 0💬

How To Supply Default Values for Text Fields
How To Supply Default Values for Text Fields? - PHP Script Tips - Processing Web Forms If you want to provide a default value to a text field in your form, you need to pay attention to following notes: The default value should be provided in the 'VALUE=default_value' attribute in the &ltINPUT TY...
2007-04-22, 5547👍, 0💬

What is RAID and how does it work
What is RAID and how does it work ? Redundant Array of Independent Disks (RAID) is a term used to describe the technique of improving data availability through the use of arrays of disks and various data-striping methodologies. Disk arrays are groups of disk drives that work together to achieve high...
2007-10-25, 5546👍, 0💬

What Is Synchronization
What do you understand by Synchronization? Synchronization is a process of controlling the access of shared resources by the multiple threads in such a manner that only one thread can access one resource at a time. In non synchronized multithreaded application, it is possible for one thread to modif...
2007-03-03, 5546👍, 0💬

What architecture decisions you should consider while planning for international software
What architecture decisions you should consider while planning for international software’s? Avoid hard coding of strings in the project. Any display right from labels to error messages read it from a resource file. >Length of the string is also of prime importance. Itfs a noted fact that when we t...
2007-11-01, 5544👍, 0💬

What Are the File Upload Settings in Configuration File
What Are the File Upload Settings in Configuration File? - PHP Script Tips - Uploading Files to Web Servers There are several settings in the PHP configuration file related to file uploading: file_uploads = On/Off - Whether or not to allow HTTP file uploads. upload_tmp_dir = directory - The temporar...
2007-04-19, 5542👍, 0💬

<< < 31 32 33 34 35 36 37 38 39 40 41 > >>   Sort: Date