<< < 2 3 4 5 6 7 8 9 10 11 12 > >>   Sort: Date

Entering Comments in JSP Pages
What are the two kinds of comments in JSP and what's the difference between them? &lt;%-- JSP Comment --%&gt; &lt;!-- HTML Comment --&gt; HTML comments are visible on the client side. But JSP comments are not visible on the client side.
2007-04-03, 7615👍, 0💬

Expression Evaluation
What is the value of this expression? +1-2*3/4 -0.5
2006-09-01, 7615👍, 0💬

What is the difference between CALL_FORM, NEW_FORM and OPEN_FORM?
What is the difference between CALL_FORM, NEW_FORM and OPEN_FORM? CALL_FORM: start a new form and pass control to it. The parent form will be suspended until the called form is terminated. user can not navigate to parent form until child form is open. NEW_FORM: terminate the current form and replace...
2011-03-29, 7597👍, 0💬

How To Compare Two Strings with strcmp()
How To Compare Two Strings with strcmp()? - PHP Script Tips - PHP Built-in Functions for Strings PHP supports 3 string comparison operators, &lt;, ==, and &gt;, that generates Boolean values. But if you want to get an integer result by comparing two strings, you can the strcmp() function, wh...
2007-04-21, 7596👍, 0💬

What is CAR (Causal Analysis and Resolution)
What is CAR (Causal Analysis and Resolution)? The basic purpose of CAR is to analyze all defects, problems and good practices/positive triggers in projects, perform a root cause analysis of the same, identify respective corrective and preventive actions and track these to closure. The advantage of C...
2007-10-30, 7583👍, 0💬

How do we configure “WebGarden”
How do we configure “WebGarden”? “Web garden” can be configured by using process model settings in “machine.config” or “Web.config” file. The configuration section is named &lt;processModel> and is shown in the following example. The process model is enabled by default (enable=”true”). Below...
2007-10-24, 7568👍, 0💬

How To Truncate an Array
How To Truncate an Array? - PHP Script Tips - PHP Built-in Functions for Arrays If you want to remove a chunk of values from an array, you can use the array_splice($array, $offset, $length) function. $offset defines the starting position of the chunk to be removed. If $offset is positive, it is coun...
2007-04-21, 7567👍, 0💬

What Is a TD Tag/Element
What Is a TD Tag/Element? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells A "td" element is a special element that can only be used as a sub-element of a "tr" element. A "td" element defines a column in a row. Here are basic rules about "td" elements: "td" elements are special elements ...
2007-05-11, 7553👍, 0💬

Which JavaScript file is referenced for validating the validators at the client side
Which JavaScript file is referenced for validating the validators at the client side ? WebUIValidation.js javascript file installed at “aspnet_client” root IIS directory is used to validate the validation controls at the client side
2016-07-17, 7549👍, 1💬

What is Ishikawa diagram
What is a fish bone diagram ? Dr. Kaoru Ishikawa, invented the fishbone diagram. Therefore, it can be also referred as Ishikawa diagram. Fishbone diagram is an analysis diagram which provides a systematic way of looking at effects and the causes that create or contribute to those effects. Because of...
2007-10-30, 7534👍, 0💬

What are the two fundamental objects in ADO.NET
What are the two fundamental objects in ADO.NET ? Datareader and Dataset are the two fundamental objects in ADO.NET.
2007-10-24, 7533👍, 0💬

What is CMM and different levels? explain?
What is CMM and different levels? explain? The Capability Maturity Model (CMM) is a process capability maturity model which aids in the definition and understanding of an organization's processes. The CMM was originally described in the book Managing the Software Process (Addison Wesley Professional...
2008-04-14, 7530👍, 0💬

"union" Data Type
What's the output of the following program? And why? #include main() { typedef union { int a; char b[10]; float c; } Union; Union x,y = {100}; x.a = 50; strcpy(x.b,"hello"); x.c = 21.50; printf("Union x : %d %s %f n",x.a,x.b,x.c); printf("Union y : %d %s %f n",y.a,y.b,y.c); }
2007-02-26, 7518👍, 0💬

What does AddressOf operator do in background
What does AddressOf operator do in background ? The AddressOf operator creates a delegate object to the BackgroundProcess method. A delegate within VB.NET is a type-safe, object-oriented function pointer. After the thread has been instantiated, you begin the execution of the code by calling the Star...
2007-10-22, 7507👍, 0💬

From performance point of view how do they rate
From performance point of view how do they rate ? Repeater is fastest followed by Datalist and finally datagrid.
2007-10-24, 7506👍, 0💬

Have you ever worked with Microsoft Application Blocks, if yes then which
Have you ever worked with Microsoft Application Blocks, if yes then which? Application Blocks are C# and VB.NET classes distributed as Visual Studio projects that can be downloaded from Microsoft's Web site and used in any .NET application, including ASP.NET Web applications. They are useful and pow...
2007-10-24, 7499👍, 0💬

Describe different elements in Static Chart diagrams
Describe different elements in Static Chart diagrams ? Package: - It logically groups element of a UML model. Class: - They describe set of objects with similar structure, behavior, and relationships. Data Type :- A data type is an instance of the DataType metaclass defined in the UML metamodel. A d...
2007-10-26, 7495👍, 0💬

Do events have return type
Do events have return type ? No, events do not have return type.
2007-10-23, 7492👍, 0💬

What are the core functionalities in XML .NET framework
What are the core functionalities in XML .NET framework? Can you explain in detail those functionalities? The XML API for the .NET Framework comprises the following set of functionalities: XML readers With XML readers the client application get reference to instance of reader class. Reader class all...
2007-10-31, 7488👍, 0💬

How can you enable automatic paging in DataGrid
How can you enable automatic paging in DataGrid ? Following are the points to be done in order to enable paging in Datagrid :- ? Set the “AllowPaging” to true. ? In PageIndexChanged event set the current pageindex clicked. Note:- The answers are very short, if you have implemented practically its ju...
2007-10-24, 7482👍, 0💬

. How can a servlet refresh automatically if some new data has entered the database?
. How can a servlet refresh automatically if some new data has entered the database? You can use a client-side Refresh or Server Push.
2013-07-11, 7480👍, 0💬

What is DAR (Decision Analysis and Resolution)
What is DAR (Decision Analysis and Resolution) ? Decision Analysis and Resolution is to analyze possible decisions using a formal evaluation process that identifies alternatives against established criteria. Example in a project you are said to use third party tools so you will not depend on only on...
2007-10-30, 7468👍, 0💬

How do we access attributes using “XmlReader”
How do we access attributes using “XmlReader”? Below snippets shows the way to access attributes. First in order to check whether there any attributes present in the current node you can use “HasAttributes” function and use the “MoveToNextAttribute” method to move forward in attribute. In case you...
2007-10-31, 7450👍, 0💬

How To Set Up Breakpoints in Debug Mode
How To Set Up Breakpoints in Debug Mode? - Oracle DBA FAQ - Introduction to Oracle SQL Developer To debug a stored procedure, you need to set breakpoints at different statements in the code block, so that execution will be stopped at the statement marked with a breakpoint. When execution is stopped,...
2007-04-28, 7446👍, 0💬

<< < 2 3 4 5 6 7 8 9 10 11 12 > >>   Sort: Date