<< < 29 30 31 32 33 34 35 36 37 38 39 > >>   Sort: Date

What order they are triggered
What order they are triggered ? They're triggered in the following order: Application_BeginRequest Application_AuthenticateReques tApplication_AuthorizeRequest Application_ResolveRequestCach eApplication_AcquireRequestStat eApplication_PreRequestHandlerE xecuteApplication_PreSendRequestHead ersAppli...
2007-10-24, 5606👍, 0💬

How To Tell Web Browsers That Your Web Pages Have Atom Feeds
How To Tell Web Browsers That Your Web Pages Have Atom Feeds? - RSS FAQs - Atom Feed Introduction and File Generation One way to tell Web browsers that your Web pages have Atom Feed files is to add a "link" tag in the header section of your Web pages. The "link" tag defines a "link" element with 4 a...
2007-05-12, 5606👍, 0💬

What’s the use of “GLOBAL.ASAX” file
What’s the use of “GLOBAL.ASAX” file ? It allows to executing ASP.NET application level events and setting application-level variables.
2007-10-24, 5602👍, 0💬

What Is an Online RSS Aggregator
What Is an Online RSS Aggregator? - RSS FAQs - Adding Your Feeds to RSS News Readers and Aggregators An online RSS aggregator is a Website that serves you as a RSS aggregator. Once you have registered an online RSS aggregator, you can access it from any computer on the Internet. Examples of online R...
2007-05-12, 5602👍, 0💬

How Many File Formats Are Supported to Export Data
How Many File Formats Are Supported to Export Data? - Oracle DBA FAQ - Introduction to Oracle SQL Developer Oracle SQL Developer can allow to export table data into files in the following formats: TXT - Tab delimited fields file format. CSV - Comma Separated Values (CSV) file format. LOADER - File f...
2007-04-27, 5602👍, 0💬

What Is SQL*Plus
What Is SQL*Plus? - Oracle DBA FAQ - Oracle Basic Concepts SQL*Plus is an interactive and batch query tool that is installed with every Oracle Database Server or Client installation. It has a command-line user interface, a Windows Graphical User Interface (GUI) and the iSQL*Plus web-based user inter...
2007-04-22, 5602👍, 0💬

Is JSP technology extensible?
Is JSP technology extensible? YES. JSP technology is extensible through the development of custom actions, or tags, which are encapsulated in tag libraries.
2019-01-07, 5601👍, 1💬

💬 2019-01-07 Hgf: Very good

What is Jakarta Struts Framework
What is Jakarta Struts Framework? Jakarta Struts is open source implementation of MVC (Model-View-Controller) pattern for the development of web based applications. Jakarta Struts is robust architecture and can be used for the development of application of any size. Struts framework makes it much ea...
2007-12-10, 5601👍, 0💬

What Is MyISAM
What Is MyISAM? - MySQL FAQs - Database Basics and Terminologies MyISAM is a storage engine used as the default storage engine for MySQL database. MyISAM is based on the ISAM (Indexed Sequential Access Method) concept and offers fast data storage and retrieval. But it is not transaction safe.
2007-05-10, 5600👍, 0💬

How To Convert Numeric Values to Character Strings
How To Convert Numeric Values to Character Strings? - MySQL FAQs - Introduction to SQL Basics You can convert numeric values to character strings by using the CAST(value AS CHAR) function as shown in the following examples: SELECT CAST(4123.45700 AS CHAR) FROM DUAL; 4123.45700 -- How to get rid of t...
2007-05-11, 5598👍, 0💬

How To Split a String into Pieces
How To Split a String into Pieces? - PHP Script Tips - PHP Built-in Functions for Strings There are two functions you can use to split a string into pieces: explode(substring, string) - Splitting a string based on a substring. Faster than split(). split(pattern, string) - Splitting a string based on...
2007-04-21, 5597👍, 0💬

Deleting Cookies in JSP Pages
How do you delete a Cookie within a JSP? Cookie mycook = new Cookie("name","value"); response.addCookie(mycook); Cookie killmycook = new Cookie("mycook","value"); killmycook.setMaxAge(0); killmycook.setPath("/"); killmycook.addCookie(killmycoo k);
2007-04-03, 5596👍, 0💬

What are the problems associated with using JavaScript, and are there JavaScript techniques that you discourage?
What are the problems associated with using JavaScript, and are there JavaScript techniques that you discourage? Browser version incompatibility is the biggest problem. It requires knowing how each scriptable browser version implements its object model. You see, the incompatibility rarely has to do ...
2008-07-22, 5595👍, 0💬

Who Should Use JUnit, Developers or Testers
Who Should Use JUnit, Developers or Testers? I should say that JUnit is mostly used by developers. JUnit is designed for unit testing, which is really a coding process, not a testing process. But many testers or QA engineers, are also required to use JUnit for unit testing. For example, I found this...
2008-01-02, 5594👍, 0💬

Do interface have accessibility modifier
Do interface have accessibility modifier? All elements in Interface should be public. So by default all interface elements are public by default.
2007-10-23, 5594👍, 0💬

How To Define a Sub Procedure
How To Define a Sub Procedure? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions A sub procedure is a named procedure defined and used inside another procedure or function. You need to define a sub procedure in the declaration part of the enclosing procedure or function. Sub proce...
2007-04-25, 5593👍, 0💬

How To Get Some Basic Information Back from MySQL Servers
How To Get Some Basic Information Back from MySQL Servers? - MySQL FAQs - PHP Connections and Query Execution Once you got a MySQL server connection object successfully, you can use mysql_get_server() and mysql_get_host_info() to get some basic information from your MySQL server. The tutorial exerci...
2007-05-10, 5591👍, 0💬

How Much Memory Does the Server Take
How Much Memory Does the Server Take? - MySQL FAQs - Server Daemon mysqld Administration If you are interested to know how much memory your MySQL server is taking, you can use Windows Task Manager to find out. Try to following this tutorial exercise: Start your MySQL server. Press Ctrl-Alt-Del and c...
2007-05-11, 5590👍, 0💬

What are COM objects?
Managed Code and Unmanaged Code related ASP.NET - What are COM objects? COM objects are another type of unmanaged code that you can use from .NET assemblies. Because COM is widely used, Visual Studio includes built-in tools for importing and using COM objects within .NET assemblies. Visual Studio al...
2009-04-07, 5588👍, 0💬

How to implement cloning in .NET ? What is shallow copy and deep copy
How do you implement prototype pattern in .NET? Cloning is achieved by using ICloneable of the System namespace. It has a “Clone” method which actually returns the reference of the same copy. Clone method allows a Shallow copy and not a deep copy. In Shallow copy if you make changes to the cloned ob...
2007-10-24, 5588👍, 0💬

What Is session_register()
What Is session_register()? - PHP Script Tips - Understanding and Using Sessions session_register() is old function that registers global variables into the current session. You should stop using session_register() and use array $_SESSION to save values into the current session now.
2007-04-14, 5587👍, 0💬

What is XSL
What is XSL? XSL (the eXtensible Stylesheet Language) is used to transform XML document to some other document. So its transformation document which can convert XML to some other document. For instance you can apply XSL to XML and convert it to HTML document or probably CSV files.
2007-10-31, 5586👍, 0💬

What is ILDASM
If you want to view a Assembly how do you go about it ? When it comes to understanding of internals nothing can beat ILDASM. ILDASM basically converts the whole exe or dll in to IL code. To run ILDASM you have to go to "C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Bin". Note that i ha...
2007-10-22, 5584👍, 0💬

Relation between HTML and XML
What Is the Relation between HTML and XML? XML (Extensible Markup Language) is a generic markup language to organize generic information into a structured document with embedded tags. HTML is not related to XML other than the factor that both languages uses embedded tags in with similar syntaxes. Fo...
2007-03-03, 5584👍, 0💬

<< < 29 30 31 32 33 34 35 36 37 38 39 > >>   Sort: Date