| Author: raja emani 25 Apr 2008 | Member Level: Bronze | Rating: Points: 2 |
what is server side controls
|
| Author: venkatesan 25 Apr 2008 | Member Level: Diamond | Rating: Points: 2 |
Server side control - the control which is run on server side.., like asp.net server etc..
|
| Author: venkatesan 25 Apr 2008 | Member Level: Diamond | Rating: Points: 2 |
client side control - These ar client side controls
which u ar going to write the code to do some actions..
|
| Author: venkatesan 25 Apr 2008 | Member Level: Diamond | Rating: Points: 2 |
java scripting - some thing we cant do through code behind file , it need lot of code... so using scripting language , u can do some dynamicaly create events, action, etc..which require less code..
|
| Author: venkatesan 25 Apr 2008 | Member Level: Diamond | Rating: Points: 2 |
dll - is a library which is used by many user , it is nothing but a object
|
| Author: venkatesan 25 Apr 2008 | Member Level: Diamond | Rating: Points: 2 |
Com is a component , then can be used as a third party controls like as dll
|
| Author: venkatesan 25 Apr 2008 | Member Level: Diamond | Rating: Points: 2 |
event is nothing but an action that has been fired...
|
| Author: samul 25 Apr 2008 | Member Level: Gold | Rating: Points: 2 |
Reflection is used to get the metadata. types snapshot replication,merge replication.
Interface is nothing but collection of collection of methods with out any functionality.
|
| Author: Sridhar R 17 Jul 2008 | Member Level: Diamond | Rating: Points: 1 |
JavaScript.... JavaScript is a scripting language most often used for client-side web development. It was the originating dialect of the ECMAScript standard. It is a dynamic, weakly typed, prototype-based language with first-class functions. JavaScript was influenced by many languages and was designed to look like Java, but be easier for non-programmers to work with.[1][2]
Although best known for its use in websites (as client-side JavaScript), JavaScript is also used to enable scripting access to objects embedded in other applications (see below).
JavaScript, despite the name, is essentially unrelated to the Java programming language, although both have the common C syntax, and JavaScript copies many Java names and naming conventions. The language was originally named "LiveScript" but was renamed in a co-marketing deal between Netscape and Sun, in exchange for Netscape bundling Sun's Java runtime with their then-dominant browser. The key design principles within JavaScript are inherited from the Self programming language.
"JavaScript" is a trademark of Sun Microsystems. It was used under license for technology invented and implemented by Netscape Communications and current entities such as the Mozilla Foundation
Interface.... An interface defines the communication boundary between two entities, such as a piece of software, a hardware device, or a user. It generally refers to an abstraction that an entity provides of itself to the outside. This separates the methods of external communication from internal operation, and allows it to be internally modified without affecting the way outside entities interact with it, as well as provide multiple abstractions of itself. It may also provide a means of translation between entities which do not speak the same language, such as between a human and a computer. Because interfaces are a form of indirection, some additional overhead is incurred versus direct communication.
The interface between a human and a computer is called a user interface. Interfaces between hardware components are physical interfaces. This article deals with software interfaces which exist between separate software components and provide a programmatic mechanism by which these components can communicate.
DLL.... Dynamic-link library (also written without the hyphen), or DLL, is Microsoft's implementation of the shared library concept in the Microsoft Windows and OS/2 operating systems. These libraries usually have the file extension DLL, OCX (for libraries containing ActiveX controls), or DRV (for legacy system drivers). The file formats for DLLs are the same as for Windows EXE files — that is, Portable Executable (PE) for 32-bit and 64-bit Windows, and New Executable (NE) for 16-bit Windows. As with EXEs, DLLs can contain code, data, and resources, in any combination.
In the broader sense of the term, any data file with the same file format can be called a resource DLL. Examples of such DLLs include icon libraries, sometimes having the extension ICL, and font files, having the extensions FON and FOT.
Reflection.... In computer science, reflection is the process by which a computer program can observe and modify its own structure and behavior. The programming paradigm driven by reflection is called reflective programming.
At the lowest level, machine code can be treated reflectively because the distinction between instruction and data becomes just a matter of how the information is treated by the computer. Normally, 'instructions' are 'executed' and 'data' is 'processed'; however, the program can also treat instructions as data and therefore make reflective modifications. Reflection is most common in high-level virtual machine programming languages like Smalltalk, and less common in lower-level programming languages like C.
Common types of reflection are runtime and dynamic, but some programming languages support compile time or static reflection.
|