<< < 46 47 48 49 50 51 52 53 54 55 56 > >>   Sort: Date

What are the main components of WCF
What are the main components of WCF? We need to define three main components in WCF: Service class. Hosting environment End pointWe need to define three main components in WCF:- Service class. Hosting environment End point
2007-11-04, 5407👍, 0💬

What is the use of OLAP
What is the use of OLAP ? OLAP is useful because it provides fast and interactive access to aggregated data and the ability to drill down to detail.
2007-10-25, 5407👍, 0💬

How To Use "file" Input Fields
How To Use "file" Input Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields A "file" input field is defined as &lt;input type="file" .../&gt;. "file" input fields can be used to create file upload input fields. Most browsers will display a file upload input field as a text i...
2007-05-12, 5407👍, 0💬

How To Specify Input Values for Radio Buttons
How To Specify Input Values for Radio Buttons? - PHP Script Tips - Processing Web Forms Radio buttons can be used in a form for two situations: As a single switch - One &lt;INPUT TYPE=RADIO ...> tag, with no input value specified. When submitted with button pushed down, you will receive a value ...
2007-04-23, 5407👍, 0💬

What is AppSetting Section in “Web.Config” file
What is AppSetting Section in “Web.Config” file ? Web.config file defines configuration for a webproject. Using “AppSetting” section we can define user defined values. Example below defined is “ConnectionString” section which will be used through out the project for database connection. &lt;co...
2007-10-24, 5406👍, 0💬

Can you compare ASP.NET sessions with classic ASP
Can you compare ASP.NET sessions with classic ASP? ASP.NET session caches per user session state. It basically uses gHttpSessionStateh class. Following are the limitations in classic ASP sessions :- ã ASP session state is dependent on IIS process very heavily. So if IIS restarts ASP session vari...
2007-10-23, 5406👍, 0💬

How White Spaces Are Formatted
How White Spaces Are Formatted? - CSS Tutorials - Understanding Multiple Element Formatting Rules White spaces are formatted depending where they are located: White spaces will be ignored between block elements. White spaces will be preserved in &lt;PRE> tags. White spaces will be collapsed into...
2007-05-11, 5406👍, 0💬

How To Write a Query with a Left Outer Join
How To Write a Query with a Left Outer Join? - Oracle DBA FAQ - Understanding SQL SELECT Query Statements If you want to query from two tables with a left outer join, you can use the LEFT OUTER JOIN ... ON clause in the FROM clause. The following query returns output with a left outer join from two ...
2007-04-19, 5406👍, 0💬

Which config file has all the supported channels/protocol
Which config file has all the supported channels/protocol ? Machine.config file has all the supported channels and formatter supported by .NET remoting.Machine.config file can be found at “C:\WINDOWS\Microsoft.NET\Fram ework\vXXXXX\CONFIG”path. Find element in the Machine.config file which has the c...
2007-10-23, 5405👍, 0💬

How To Sort the Query Output
How To Sort the Query Output? - Oracle DBA FAQ - Understanding SQL SELECT Query Statements If you want the returning rows to be sorted, you can specify a sorting expression in the ORDER BY clause. The following select statement returns rows sorted by the values in the "manager_id" column: SQL> SELEC...
2007-04-20, 5405👍, 0💬

How To Unlock the Sample User Account
How To Unlock the Sample User Account? - Oracle DBA FAQ - Introduction to Oracle Database 10g Express Edition Your 10g XE server comes with a sample database user account called HR. But this account is locked. You must unlock it before you can use it: Log into the server home page as SYSTEM. Click t...
2007-04-24, 5404👍, 0💬

What is XML
What is XML? XML (Extensible markup language) is all about describing data. Below is a XML which describes invoice data. &lt;?xml version="1.0" encoding="ISO-8859-1"?> &lt;invoice> &lt;productname>Shoes &lt;qty>12 &lt;totalcost>100 &lt;discount>10 &lt;/invoice> An XML tag...
2007-10-31, 5402👍, 0💬

Hot To Test Margin Spaces on All 4 Sides
Hot To Test Margin Spaces on All 4 Sides? - CSS Tutorials - HTML Formatting Model: Block, Inline and Floating Elements If you want test margin spaces on all 4 sides of a &lt;P> tag you can use the following HTML and CSS document. It allows you to specify margin spaces with different values and v...
2007-05-11, 5401👍, 0💬

How To Add Images to Backgrounds
How To Add Images to Backgrounds? - CSS Tutorials - HTML Formatting Model: Block, Inline and Floating Elements One image can be specified to the background at a particular position. It can also be repeated in horizontal direction, vertical direction, or both directions with the following style prope...
2007-05-11, 5401👍, 0💬

What is denormalization
What is denormalization ? Denormalization is the process of putting one fact in numerous places (its vice-versa of normalization).Only one valid reason exists for denormalizing a relational design - to enhance performance.The sacrifice to performance is that you increase redundancy in database.
2007-10-25, 5400👍, 0💬

What Are the Background Style Properties
What Are the Background Style Properties? - CSS Tutorials - Page Layout and Background Image Design There are 5 style properties that you can use to control the background of a HTML block tag: background-color: Specifies the color of the background. It takes a color value or the keyword "transparent...
2007-05-11, 5399👍, 0💬

What Is SQL
What Is SQL? Structured Query Language (SQL) is the most popular computer language used to create, retrieve, update and delete data from relational database management systems. SQL has been standardized by both ANSI and ISO.
2007-04-15, 5399👍, 0💬

How To Use "reset" Input/Action Fields
How To Use "reset" Input/Action Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields A "reset" input field is defined as &lt;input type="reset" .../&gt;. "reset" input fields can be used to create reset buttons in a form. When a reset button is clicked, the form will be refre...
2007-05-12, 5398👍, 0💬

How To Generate a Feed updated Element
How To Generate a Feed updated Element? - RSS FAQs - Atom Feed File Structure and Elements The &lt;update&gt; element is a required sub-element of the &lt;feed&gt; element. The Atom specification requires that you provide a data and a time of when this feed was updated. There is no p...
2007-05-12, 5398👍, 0💬

What Is FeedReader
What Is FeedReader? - RSS FAQs - Adding Your Feeds to RSS News Readers and Aggregators Feedreader is a free lightweight aggregator that supports RSS and ATOM formats. FeedReader runs on Windows systems. Feedreader's functionality is focused on the main task - reading and organizing RSS feeds and off...
2007-05-12, 5398👍, 0💬

How Nested Block Elements Are Formatted
How Nested Block Elements Are Formatted? - CSS Tutorials - Understanding Multiple Element Formatting Rules If a block element is nested in another block element, the inner block, child block, will be formatted as the content box of the outer block, parent block. The HTML and CSS document below shows...
2007-05-11, 5398👍, 0💬

How Many Ways to Get the Current Time
How Many Ways to Get the Current Time? - MySQL FAQs - Introduction to SQL Date and Time Handling There are 8 ways to get the current time: SELECT NOW() FROM DUAL; 2006-07-01 10:02:41 SELECT CURRENT_TIME() FROM DUAL; 10:02:58 SELECT SYSDATE() FROM DUAL; 2006-07-01 10:03:21 mysql> SELECT CURRENT_TIMES...
2007-05-11, 5397👍, 0💬

How To Create an Initialization Parameter File
How To Create an Initialization Parameter File? - Oracle DBA FAQ - Creating New Database Instance Manually This is Step 3. To run an Oracle database as an Oracle instance, you need to create an initialization parameter file, which contains a set of initialization parameters. The easiest way to creat...
2007-04-22, 5397👍, 0💬

How To Use "checkbox" Input Fields
How To Use "checkbox" Input Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields A "checkbox" input field is defined as &lt;input type="checkbox" .../&gt;. A "checkbox" input field can be used to create a checkbox to allow viewers to switch on or off a boolean flag. There are...
2007-05-12, 5393👍, 0💬

<< < 46 47 48 49 50 51 52 53 54 55 56 > >>   Sort: Date