Tips n Tracks

  • Increase font size
  • Default font size
  • Decrease font size
  • default color
  • black color

Reference

Sample image

Microsoft .NET Framework Get Details.

Sample image

Microsoft .NET Framework Get Details.

Reference

Sample image Microsoft .NET Framework Get Details.
Sample image

Microsoft .NET Framework Get Details.


How I can Hibernate Windows XP


How I can Hibernate Windows XP

Hibernate (Hibernation) is a feature of Windows XP operating systems where the contents and programs that were running on the OS keep as it is, while Windows XP goes to the state of inactivity. When your Windows XP hibernates, it stores whatever it has in memory (the contents of RAM) on the hard disk and the shut down. When the computer is restarted it comes out of hibernation and reloads the content of memory which wrote on the hard disk to returns to its previous state.

To use Hibernate feature first of all we need to enable hibernation support on Windows XP. You must be an administrator or a member of the Administrators or Power Users group. If your computer is connected to a network, network policy settings may prevent this procedure.


Read the rest of this entry »

Learning JavaScript tutorial – Understanding JavaScript Variable Types


Learning JavaScript tutorial – Understanding JavaScript Variable Types

JavaScript Variable is the best mean of storing the data (value). The JavaScript is a loosely typed programming languages and do not need to define the type of a variable while defining it. The main advantage of JavaScript Variable is that it can held any kind of data values, or types, which include number, string, Boolean, and null.

JavaScript allows us to assigned any variable with any value. This feature of javascript provides great flexibility in coding. In this article we are going to Understand the JavaScript Variable Types. If you want to learn some basic about the JavaScript Variables please go through "Learning JavaScript tutorial – JavaScript Variables".


Read the rest of this entry »

Learning JavaScript tutorial – JavaScript with Statement


Learning JavaScript tutorial – JavaScript with Statement

JavaScript offer lots of verity whiling dealing with the statements. Along with the flow control and loop control statements JavaScript supports object-related "with statements". With statement allows using a shorthand notation when referring objects and deals with the object scope chain.

with (object)
{
  statement(s);
}

Let us consider an example of the document object allows us to access the objects that compose a document. Using JavaScript with Statement we can access the scope of document object.


Read the rest of this entry »

Learning JavaScript tutorial – JavaScript switch Statement


Learning JavaScript tutorial – JavaScript switch Statement

JavaScript switch statement control the flow of program execution via a multiway branch. When we need execute a statement block depending on the value of a single variable; JavaScript switch Statement is the best alternative to JavaScript if Condition Statement to it handles the situation more efficiently than repeated if statements.

JavaScript switch Statement Syntax

switch (conditional expression)
{
  case condition 1:
    statement block executed if condition 1 is true(satisfied).
        break;
  case condition 2:
    statement block executed if condition 1 is true(satisfied).
        break;
  .
  .
  .
  case condition n:
    statement block executed if condition n is true(satisfied).
        break;
  default:
    statement block executed if no condition is true(satisfied).
    break;
}


Read the rest of this entry »

Learning JavaScript tutorial – JavaScript if, if else and else if Condition Statement


Learning JavaScript tutorial – JavaScript if, if else and else if Condition Statement

Decision making based on different computations or perform actions depending on a programmer-specified condition is one of the features of the JavaScript language.

JavaScript if Condition Statement

JavaScript if Condition Statements are used to perform different actions (make decisions) based on different conditions evaluated to a Boolean true or false. JavaScript if Condition Statement help us to execute statement block conditionally.

JavaScript if Condition Statement Syntax

if (conditional expression)
  {
  statement block executed if condition is true(satisfied).
  }

Here, If the resulting value of conditional expression is true or can be evaluated to true, statement block enclosed within the Curly braces – {} is executed.

if Condition Statement flowchart
If Condition Statement flowchart


Read the rest of this entry »

Web hosting for .NET web development projects it is always best to get asp web hosting to make sure it supports both IIS and SQL.