Try Catch (Exception)
try
{
}
catch(err)
{
}
finally
{
}
google_ad_client = "ca-pub-8117195126042316";
google_ad_slot = "4632179671";
google_ad_width = 468;
google_ad_height = 60;
...
Friday, December 28, 2012
Published 7:02 AM by Aruna Jayathilaka with 1 comment
Javascript Array Functions (Array)
var fruit = ["apple","orange","banana"];
log(fruit.sort());//apple,banana,orange
fruit.push("pear");
log(fruit.sort());//apple,banana,orange,pear
var vegitables = ["carrot","broccoli","cauliflovd"];
var all = fruit.concat(vegitables);
log(all);//apple,orange,banana,carrot,broccoli,cauliflovd
!--
google_ad_client...
Published 4:46 AM by Aruna Jayathilaka with 0 comment
Javascript Function
Javascript function definitions,
There are few different methods to define a function in javascript
Example
function Samsple1()
{
log('Hello Aruna');
}...
!--
google_ad_client = "ca-pub-8117195126042316";
/* blogpost_hori_1 */
google_ad_slot = "4632179671";
google_ad_width...
Published 3:13 AM by Aruna Jayathilaka with 0 comment
-ms-grid-columns property (Internet Explorer)
Gets or sets one or more values that specify the width of each grid column within the object.
This property is read/write.
Syntax
-ms-grid-columns: [ auto | width | min-content | max-content | minmax(min, max) ] + | none
Property values
One or more...
Published 12:22 AM by Aruna Jayathilaka with 0 comment
HTML5 Web Storage
HTML5 web storage, a better local storage than cookies.
What is HTML5 Web Storage?
With HTML5, web pages can store data locally within the user's browser.
Earlier, this was done with cookies. However, Web Storage is more secure and
faster. The data is not included with...
Wednesday, December 26, 2012
Published 10:14 PM by Google Map with 0 comment
What is the Web workers
A server-sent event is when a web page automatically gets updates from a
server.
This was also possible before, but the web page would have to ask if any updates were
available. With server-sent events, the updates come automatically.
Examples: Facebook/Twitter...
Published 9:38 PM by Google Map with 0 comment
What is the Web workers
A web worker is a JavaScript that runs in the background, independently
of other scripts, without affecting the performance of the page. You can continue to do whatever you want:
clicking, selecting things, etc., while the web worker runs in the background.
ΙΕ...
Thursday, December 20, 2012
Published 8:28 PM by Google Map with 0 comment
This message box is designed for asp.net pages using JQuery
collect all files in one folder and test the sample page
Message box with animation
//#--Scrolling with Animation-----------------
//$("#ContentDivMessage").animate( { left:left1}, 500 )
//.animate( { top:top1 }, 500);
//#-------------------------------------------
Message box with out animation
//#--With out Animation-----------------------
document.getElementById('ContentDivMessage').style.left...
Published 8:26 PM by Google Map with 0 comment
this is a usefull method to check spelling in testbox
//make all references
Microsoft Office 12.0 Object Library
Microsoft Word 12.0 Object Library
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
using System.Web.UI.WebControls;
using Microsoft.Office.Interop.Word;
public void SpellChecking(TextBox tBox)
{
try
{
Application app = new Application();
if...
Monday, December 17, 2012
Published 4:36 AM by Google Map with 1 comment
DOWNLOAD SOURCE
.pic {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: #EEEEEE;
border-image: none;
border-style: solid;
border-width: 5px 5px 18px;
...
Thursday, December 13, 2012
Published 2:11 AM by Google Map with 0 comment

Modify these lines at the end of the .ini file:
...
Wednesday, December 12, 2012
Published 1:52 AM by Google Map with 0 comment
.animate-get-angry
{
width:100px;
height:100px;
background:red;
position:relative;
animation:get-angry 5s linear 2s infinite alternate;;
-moz-animation:get-angry 5s linear 2s infinite alternate;; /* Firefox */
-webkit-animation:get-angry 5s linear 2s infinite alternate;; /* Safari and Chrome */
-o-animation:get-angry 5s linear 2s infinite alternate;; /* Opera */
}
@keyframes get-angry
{
0%...
Published 1:06 AM by Google Map with 0 comment
#pic {
transition:all 2s;
}
#pic:hover
{
/*General*/
transform: translate(50%, 50%) scale(2, 2) rotate(10deg);
/*Firefox*/
-moz-transform: translate(50%, 50%) scale(2, 2) rotate(10deg);
/*Microsoft Internet Explorer*/
-ms-transform: translate(50%, 50%) scale(2, 2) rotate(10deg);
/*Chrome,...
Published 12:47 AM by Google Map with 0 comment

this is the figure caption
figure
{
margin: 1.5em 0;
position: relative;
}
figure img {
background: none repeat scroll 0 0 #FFFFFF !important;
border: 1px solid #999999 !important;
display: block !important;
height: auto !important;
max-width: 97% !important;
...
Published 12:07 AM by Google Map with 0 comment
.flex
{
/* basic styling */
width: 350px;
height: 200px;
border: 1px solid #555;
font: 14px Arial;
/* flexbox setup */
display: -webkit-flex;
-webkit-flex-direction: row;
display: flex;
flex-direction: row;
}
.flex > div
{
-webkit-flex: 1 1 auto;
flex: 1 1 auto;
width: 30px; /* To make the transition...
Tuesday, December 11, 2012
Published 11:00 PM by Aruna Jayathilaka with 0 comment
Scalable Vector Graphics (SVG) is a family of specifications of an XML-based file format for two-dimensional vector graphics, both static and dynamic (i.e., interactive or animated). The SVG specification is an open standard that has been under development by the World Wide Web Consortium (W3C) since 1999.
SVG images and their behaviors are defined in XML text files. This means that they can be...
Published 9:34 PM by Aruna Jayathilaka with 0 comment
.two-columns
{
-moz-column-count: 2;
-moz-column-gap: 20px;
-webkit-column-count: 2;
-webkit-column-gap: 20px;
column-count: 2;
column-gap: 20px;
}
.two-columns
{
-moz-column-count: 2;
-moz-column-gap: 20px;
-webkit-column-count: 2;
-webkit-column-gap: 20px;
column-count: 2;
column-gap: 20px;
}
Animation is the rapid display of a sequence of images to create an illusion...
Monday, April 2, 2012
Published 11:21 PM by Aruna Jayathilaka with 0 comment
Source
Size
DownLoad
Date
Microsoft.CertifyMe.70-573.v2011-10-04.by.bennus.157q.vce
337KB
Download .vce file
03/04/2012
Microsoft.CertifyMe.70-573.v2012-03-14.by.kemron.172q.vce
377KB
Download .vce file
...
Monday, February 27, 2012
Subscribe to:
Posts (Atom)