<< < 20 21 22 23 24 25 26 27 28 29 30 > >>   Sort: Date

What Is RSS (Really Simple Syndication)
What Is RSS (Really Simple Syndication)? - RSS FAQs - Introduction to RSS (Really Simple Syndication) Basics RSS (Really Simple Syndication) is technology that can be used on Websites to syndicate and distribute frequently updated content via news aggregators. Syndication benefits both users and pub...
2007-05-12, 5518👍, 0💬

How To Get the ID Column Auto-Incremented
How To Get the ID Column Auto-Incremented? - MySQL FAQs - Managing Tables and Running Queries with PHP Scripts Many tables require an ID column to assign a unique ID number for each row in the table. For example, if you have a table to hold forum member profiles, you need an ID number to identify ea...
2007-05-11, 5515👍, 0💬

What are the seven layers(OSI model) of networking
What are the seven layers(OSI model) of networking? 1.Physical, 2.Data Link, 3.Network, 4.Transport, 5.Session, 6.Presentation and 7.Application Layers.
2007-11-12, 5512👍, 0💬

What Is Commit
What Is Commit? - MySQL FAQs - Database Basics and Terminologies Commit is a way to terminate a transaction with all database changes to be saved permanently to the database server.
2007-05-10, 5509👍, 0💬

What Happens If Your Atom Feed Fails the Validation
What Happens If Your Atom Feed Fails the Validation? - RSS FAQs - Atom Feed Introduction and File Generation If your Atom feed file fails the w3.org validator, you will get an error message explaining where the error is in your feed file. The tutorial exercise below shows you a good example. Try to ...
2007-05-12, 5508👍, 0💬

Describe the various components in sequence diagrams
Describe the various components in sequence diagrams? Object lifeline: It represents the lifetime of an object creation and its destruction. If the object is created or destroyed during the time period the diagram represents, then the lifeline stops or starts at the appropriate point. An object's de...
2007-10-26, 5507👍, 0💬

Do session use cookies
How can we make session to not to use cookies ? Left to the user, you will enjoy to find this answer.
2007-10-24, 5507👍, 0💬

How to set a cookie with the contents of a textbox ?
How to set a cookie with the contents of a textbox ? Values stored in cookies may not have semicolons, commas, or spaces. You should use the handy "escape()" function to encode the values, and "unescape()" to retrieve them. //Sets cookie of current value for myTextBox function TextBoxOnchange() { va...
2024-03-11, 5505👍, 4💬

💬 2021-04-09 r: wer

Component Subclasses in Swing Package
Name Component subclasses that support painting? The Canvas, Frame, Panel, and Applet classes support painting.
2007-03-03, 5503👍, 0💬

Explain the different elements of a Use Case
Explain the different elements of a Use Case ? Package: - It logically groups element of a UML model. Use Case :- It represents a set of events. Actor : - Role played by an outside object. Interface :- It specifies the externally operations of a class, component, package, or other element without sp...
2007-10-26, 5498👍, 0💬

What are design patterns
What are design patterns ? Design patterns are recurring solution to recurring problems in software architecture. (A) Can you list down all patterns and their classification ? Note :- This is advanced question because anyone who asks to list down all patterns can only be crazy for what he is asking....
2007-10-24, 5497👍, 0💬

What are the major differences between services and Web services
What are the major differences between services and Web services?
2007-11-04, 5496👍, 0💬

Differences between Interfaces and Abstract Classes
What's the difference between an interface and an abstract class? An abstract class may contain code in method bodies, which is not allowed in an interface. With abstract classes, you have to inherit your class from it and Java does not allow multiple inheritance. On the other hand, you can implemen...
2007-03-03, 5494👍, 0💬

Performance Testing
What are major factors to consider when doing performance testing What is Performance Testing? Testing conducted to evaluate the compliance of a system or component with specified performance requirements. Often this is performed using an automated test tool to simulate large number of users. Also k...
2009-03-23, 5493👍, 0💬

What is the use of @ Register directives
What is the use of @ Register directives ? @Register directive informs the compiler of any custom server control added to the page.
2007-10-24, 5493👍, 0💬

What does "1"+2+4 evaluate to?
What does "1"+2+4 evaluate to? Since "1" is a string, everything is a string, so the result is a string of "124".
2008-07-29, 5492👍, 0💬

What is the difference between Stored Procedure (SP) and User Defined Function (UDF)?
What is the difference between Stored Procedure (SP) and User Defined Function (UDF)? Following are some major differences between a stored procedure and user defined functions: UDF can be executed using the “SELECT” clause while SP’s can not be. UDF can not be used in XML FOR clause but SP’s can b...
2007-10-25, 5492👍, 0💬

What is an XMLReader Class
What is an XMLReader Class? It is an abstract class available from System.XML namespace. XML reader works on a read-only stream browsing from one node to other in a forward direction. It maintains only a pointer to the current node but has no idea of the previous and the next node. You can not modif...
2007-10-31, 5488👍, 0💬

What is DMAIC and DMADV
What is DMAIC and DMADV ? Six Sigma has two key methodologies DMAIC and DMADV. DMAIC is used to improve an existing business process. DMADV is used to create new product designs or process designs in such a way that it results in a more predictable, mature and defect free performance. DMAIC Basic me...
2007-10-30, 5487👍, 0💬

What configuration files are used in Struts
What configuration files are used in Struts? There are main configuration files used in Struts to bridge the gap between the Controller and the Model: ApplicationResources.propertie sstruts-config.xml
2007-12-03, 5486👍, 0💬

How can I show the entire validation error message in a message box on the client side
How can I show the entire validation error message in a message box on the client side? In validation summary set “ShowMessageBox” to true.
2007-10-24, 5484👍, 0💬

How to implement DTC in .NET
How to implement DTC in .NET ? DTC is implemented using COM+. Following are the steps to implement COM + in .NET :- ã gEnterpriseServiceh namespace has all the classes by which we can implement DTC in .NET. You have to add reference gEnterpriseServiceh namespace. omits it all together, then w...
2007-10-22, 5484👍, 0💬

What is DOCTYPE
What is a DOCTYPE? Which one do I use? According to HTML standards, each HTML document begins with a DOCTYPE declaration that specifies which version of HTML the document uses. Originally, the DOCTYPE declaration was used only by SGML-based tools like HTML validators, which needed to determine which...
2007-03-03, 5483👍, 0💬

How To Protect Special Characters in Query String
How To Protect Special Characters in Query String? - PHP Script Tips - Processing Web Forms If you want to include special characters like spaces in the query string, you need to protect them by applying the urlencode() translation function. The script below shows how to use urlencode(): &lt;?ph...
2007-04-22, 5480👍, 0💬

<< < 20 21 22 23 24 25 26 27 28 29 30 > >>   Sort: Date