<< < 40 41 42 43 44 45 46 47 48 49 50 > >>   Sort: Date

What are different bindings supported by WCF
What are different bindings supported by WCF? WCF includes predefined bindings. They cover most of bindings widely needed in day to day application. But just incase you find that you need to define something custom WCF does not stop you. So let’s try to understand what each binding provides. BasicHt...
2007-11-04, 5369👍, 0💬

Can SELECT Statements Be Used on Views
Can SELECT Statements Be Used on Views? - Oracle DBA FAQ - Understanding SQL SELECT Query Statements Select (query) statements can used on views in the same way as tables. The following tutorial exercise helps you creating a view and running a query statement on the view: SQL> CREATE VIEW managed_de...
2007-04-20, 5369👍, 0💬

Who makes the Strut
Who makes the Strut? Struts is developed by by the Apache Software Foundation(ASF) as part of its Jakarta project, like Tomcat, Ant and Velocity. See Website http://struts.apache.org/.
2007-11-28, 5368👍, 0💬

What Happens If a Hyper Link Points to a PDF File
What Happens If a Hyper Link Points to a PDF File? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs If you want to build a hyper link to allow visitors to access a PDF file by clicking a hyper link, you can put the URL of the PDF file directly in the "href" attribute of the hyper link. If ...
2007-05-12, 5367👍, 0💬

How can we fine tune the command object when we are expecting a single row
How can we fine tune the command object when we are expecting a single row ? Again CommandBehaviour enumeration provides two values SingleResult and SingleRow. If you are expecting a single value then pass “CommandBehaviour.SingleResult ”and the query is optimized accordingly, if you are expecting s...
2007-10-24, 5366👍, 0💬

How To Use "hidden" Input Fields
How To Use "hidden" Input Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields A "hidden" input field is defined as &lt;input type="hidden" .../&gt;. "hidden" input fields can be used to create invisible fields with predefined input values hidden in the form. There are other ...
2007-05-12, 5365👍, 0💬

How To Include Character Strings in SQL statements
How To Include Character Strings in SQL statements? - MySQL FAQs - Introduction to SQL Basics If you want to include character strings in your SQL statements, you need to quote them in one of the following formats: Using single quotes. For example 'FYIcenter.com'. Using double quotes. For example "F...
2007-05-11, 5365👍, 0💬

How To Create a Single Index for Multiple Columns
How To Create a Single Index for Multiple Columns? - Oracle DBA FAQ - Managing Oracle Table Indexes If you know a group of multiple columns will be always used together as search criteria, you should create a single index for that group of columns with the "ON table_name(col1, col2, ...)" clause. He...
2007-04-27, 5365👍, 0💬

Referring to the sample code above, which one of the following statements is correct?
class A { public: A() { if(x > 1) throw "x overflow"; else x++; } private: static int x; }; int A::x; Referring to the sample code above, which one of the following statements is correct? 1 The class can be instantiated without throwing an exception two times. 2 It cannot be determined how many time...
2012-05-07, 5364👍, 0💬

How To Use "button" Input Fields
How To Use "button" Input Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields An "button" input field is defined as &lt;input type="button" .../&gt;. "button" input fields can be used to create client-side action buttons. If a client-side action button is clicked, a client-s...
2007-05-12, 5364👍, 0💬

What Is Consistency
What Is Consistency? Consistency : Assures users that the data they are changing or viewing is not changed until the are through with it.
2007-04-15, 5364👍, 0💬

Does XML Replace HTML
Does XML replace HTML? No. XML itself does not replace HTML. Instead, it provides an alternative which allows you to define your own set of markup elements. HTML is expected to remain in common use for some time to come, and the current version of HTML is in XML syntax. XML is designed to make the w...
2007-04-11, 5363👍, 0💬

Can we have multiple threads in one App domain
Can we have multiple threads in one App domain ? One or more threads run in an AppDomain. An AppDomain is a runtime representation of a logical process within a physical process. Each AppDomain is started with a single thread, but can create additional threads from any of its threads. Note :- All th...
2007-10-22, 5362👍, 0💬

What Is a STRONG Tag/Element
What Is a STRONG Tag/Element? - XHTML 1.0 Tutorials - Understanding In-line Elements and Tags A "strong" element is an inline element that you can use to specify text with a strong emphasis. Here are basic rules about "strong" elements: "strong" elements are inline elements. "strong" elements can no...
2007-05-12, 5362👍, 0💬

How do we access viewstate value of this page in the next page
How do we access viewstate value of this page in the next page ? View state is page specific; it contains information about controls embedded on the particular page. ASP.NET 2.0 resolves this by embedding a hidden input field name, __POSTBACK . This field is embedded only when there is an IButtonCon...
2007-10-23, 5361👍, 0💬

What Happens to Multiple White Spaces in In-line Elements
What Happens to Multiple White Spaces in In-line Elements? - CSS Tutorials - Understanding Multiple Element Formatting Rules If there is a sequence of multiple white spaces and it is broken into pieces in different in-line elements, it will collapsed into the first white space on the left hand side,...
2007-05-11, 5361👍, 0💬

What Happens If the UPDATE Subquery Returns No Rows
What Happens If the UPDATE Subquery Returns No Rows? - MySQL FAQs - Understanding SQL INSERT, UPDATE and DELETE Statements If you use a subquery to assign new values in the SET clause in an UPDATE statement, and the subquery returns no rows for an outer row, MySQL will provide a NULL value to the SE...
2007-05-11, 5361👍, 0💬

How To Rename an Existing Table
How To Rename an Existing Table? - Oracle DBA FAQ - Managing Oracle Database Tables If you don't like the name of an existing table, you change it by using the CREATE TABLE ... RENAME TO statement. Here is a sample script: SQL> connect HR/fyicenter Connected. SQL> CREATE TABLE emp_dept_10 2 AS SELEC...
2007-05-03, 5361👍, 0💬

Basic Concepts
Basic Concepts - XHTML 1.0 - Interview Questions What is XHTML? How is XHTML related to HTML? How is XHTML related to XML? What are the main advantages of XHTML over HTML? Is an XHTML document an XML document? Is an XML document an XHTML document? Is XHTML going to replace HTML? Is XML going to repl...
2007-05-12, 5357👍, 0💬

What Is Row
What Is Row? - MySQL FAQs - Database Basics and Terminologies A row is a unit of data with related data items stored as one item in one column in a table.
2007-05-10, 5357👍, 0💬

What Are the Differences between CHAR and NCHAR
What Are the Differences between CHAR and NCHAR? - MySQL FAQs - Introduction to SQL Basics Both CHAR and NCHAR are fixed length string data types. But they have the following differences: CHAR's full name is CHARACTER. NCHAR's full name is NATIONAL CHARACTER. By default, CHAR uses ASCII character se...
2007-05-11, 5356👍, 0💬

How can you avoid deadlock in threading
How can you avoid deadlock in threading? A good and careful planning can avoid deadlocks.There are so many ways Microsoft has provided by which you can reduce deadlocks example Monitor, Interlocked classes, Wait handles, Event raising from one thread to other thread, ThreadState property which you c...
2007-10-22, 5355👍, 0💬

What is three tier architecture
What is three tier architecture? The three tier software architecture emerged in the 1990s to overcome the limitations of the two tier architecture. There are three layers when we talk about three tier architecture:- User Interface (Client) :- This is mostly the windows user interface or the Web int...
2007-10-24, 5354👍, 0💬

What is Unicode and why was it introduced
What is Unicode and why was it introduced? In order to understand the concept of Unicode we need to move little back and understand ANSI code. ASCII (ask key) stands for American Standard Code for Information Interchange. In ASCII format every character is represented by one byte (i.e. 8 bits). So i...
2007-11-01, 5352👍, 0💬

<< < 40 41 42 43 44 45 46 47 48 49 50 > >>   Sort: Date