October 12th, 2007
The simplest types in the .NET Framework, primarily numeric and Boolean types, are value types. Value types are variables that contain their data directly instead of containing a reference to the data stored elsewhere in memory. Instances of value types are stored in an area of memory called the stack, where the runtime can create, read, update, and remove them quickly with minimal overhead.
There are three general value types:
- Built-in types
- User-defined types
- Enumerations
Each of these types is derived from the System.Value base type.
Posted in DotNet 2005 Foundation, Learning | Comments Off
October 7th, 2007
function FillDropDown()
{
Posted in Java Script | Comments Off
October 5th, 2007
Hi all,
I am developing a windows based application in C#.Net and using
Posted in dot Net | Comments Off
October 5th, 2007
//The function given below is use to validate the string in correct format or not. In case of correct format the function will return true as result otherwise will return false.
<script language=’javascript’ type=’text/javascript’>
function IsLettersDigitsChars(strString)
{
Posted in Java Script | Comments Off
October 1st, 2007
function CallPrint(DivId)
{
Posted in Java Script | Comments Off