<< < 27 28 29 30 31 32 33 34 35 36 37 > >>   Sort: Date

Which specifications does WCF follow
Which specifications does WCF follow? WCF supports specifications defined by WS-* specifications. WS-* specifications are defined together by Microsoft, IBM, SUN and many other big companies so that they can expose there service through a common protocol. WCF supports all specifications defined we w...
2007-11-04, 5298👍, 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, 5297👍, 0💬

What is a CTS
What is a CTS? In order that two language communicate smoothly CLR has CTS (Common Type System).Example in VB you have “Integer” and in C++ you have “long” these datatypes are not compatible so the interfacing between them is very complicated. In order to able that two different languages can commu...
2007-10-22, 5297👍, 0💬

How To Turn On or Off Recycle Bin for the Instance
How To Turn On or Off Recycle Bin for the Instance? - Oracle DBA FAQ - Managing Oracle Database Tables You can turn on or off the recycle bin feature for an instance in the instance parameter file with "recyclebin=on/off". You can also turn on or off the recycle bin feature on the running instance w...
2007-05-04, 5296👍, 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, 5296👍, 0💬

How To Use MySQL Command Line Interface
How To Use MySQL Command Line Interface? - PHP Script Tips - Working with MySQL Database MySQL server comes with a command line interface, which will allow you to operate with the server with SQL statements and other commands. To start the command line interface, you can run the \mysql\bin\mysql pro...
2007-04-18, 5296👍, 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, 5296👍, 0💬

What Are the File Upload Settings in Configuration File
What Are the File Upload Settings in Configuration File? - PHP Script Tips - Uploading Files to Web Servers There are several settings in the PHP configuration file related to file uploading: file_uploads = On/Off - Whether or not to allow HTTP file uploads. upload_tmp_dir = directory - The temporar...
2007-04-19, 5295👍, 0💬

Is XML meant to replace HTML
Is XML meant to replace HTML? No, they both go together one is for describing data while other is for displaying data.
2007-10-31, 5293👍, 0💬

What Is Wrong with My "checked" Attribute Values
What Is Wrong with My "checked" Attribute Values? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Attribute "checked" is an optional attribute for XHTML element "input". In XHTML specification, attribute "checked" has only predefined value: "checked". However, in HTML specification, att...
2007-05-12, 5293👍, 0💬

How To Rollback the Current Transaction
How To Rollback the Current Transaction? - MySQL FAQs - Transaction Management: Commit or Rollback If you have used some DML statements updated some data objects, you find a problem with those updates, and you don't want those updates to be permanently recorded in the database, you can use the ROLLB...
2007-05-11, 5293👍, 0💬

What Is an External Table
What Is an External Table? - Oracle DBA FAQ - Loading and Exporting Data An external table is a table defined in the database with data stored outside the database. Data of an external table is stored in files on the operating systems. Accessing data of external tables are done through data access d...
2007-04-30, 5293👍, 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, 5293👍, 0💬

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, 5290👍, 0💬

How does one suppress or customize error messages in Forms?
How does one suppress or customize error messages in Forms? One can either set the message level using the system variable SYSTEM.MESSAGE_LEVEL or trap errors using the ON-ERROR or ON-MESSAGE triggers. MESSAGE_LEVEL: Set to 0, 5, 10, 15, 20, 25 to suppress all messages with severity below this level...
2011-04-05, 5288👍, 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, 5288👍, 0💬

How To Define an Anonymous Block
How To Define an Anonymous Block? - Oracle DBA FAQ - Introduction to PL/SQL An anonymous block must have an execution part, which is a group of other PL/SQL statements enclosed in the BEGIN ... END statement. Here is a script on how to define a simple anonymous block with SQL*Plus: SQL> set serverou...
2007-04-25, 5287👍, 0💬

What Is Wrong with My &lt;meta&gt; Tags
What Is Wrong with My &lt;meta&gt; Tags? - XHTML Tutorials - Introduction To Tag and Attribute Syntax If you are converting existing HTML documents to XHTML format, you may find some &lt;meta&gt; tags are written as: &lt;meta name="Author" content="FYICenter.com"&gt ;&lt;...
2007-05-12, 5286👍, 0💬

JComponent and Component
Why does JComponent have add() and remove() methods but Component does not? Because JComponent is a subclass of Container, and can contain other components and jcomponents.
2007-04-03, 5286👍, 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, 5284👍, 0💬

Defining Abstract Classes
How to define an Abstract class? Defining an abstract class is done using the keyword "abstract". Here is an example of abstract class: abstract class MyAbstract { protected String myString; public String getMyString() { return myString; } public abstract string getMyStringInYourWay(); }
2007-03-03, 5284👍, 0💬

How To Validate HTML Documents Online
How To Validate HTML Documents Online? If you have just finished a new HTML document, and you want to make sure that confirms with the HTML specification, you can use the HTML online validator at http://validator.w3.org/ . There are 3 ways you can use this validator: By URL - Specify the URL where y...
2007-03-03, 5282👍, 0💬

What are the various ways of hosting a WCF service
What are the various ways of hosting a WCF service? There are three major ways to host a WCF service: Self hosting the service in his own application domain. This we have already covered in the first section. The service comes in to existence when you create the object of ServiceHost class and the s...
2007-11-04, 5280👍, 0💬

How to decide on the design consideration to take a Datagrid
How to decide on the design consideration to take a Datagrid, datalist or repeater ? Many make a blind choice of choosing datagrid directly, but that's not the right way. Datagrid provides ability to allow the end-user to sort, page, and edit its data. But it comes at a cost of speed. Second the dis...
2007-10-24, 5280👍, 0💬

<< < 27 28 29 30 31 32 33 34 35 36 37 > >>   Sort: Date