Wednesday, June 27, 2007

Here I am… My faviorite one!!!

Here I am - this is me

There's no where else on earth I'd rather be

Here I am - it's just me and you

And tonight we make our dreams come true


 

It's a new world - it's a new start

It's alive with the beating of young hearts

It's a new day - it's a new plan

I've been waiting for you

Here I am


 

Here we are - we've just begun

And after all this time - our time has come

Ya here we are - still goin' strong

Right here in the place where we belong


 

Chorus X1


 

Here I am - this is me

There's no where else on earth I'd rather be

Here I am - it's just me and you

And tonight we make our dreams come true


 

Chorus X2


 

Here I am - next to you

And suddenly the world is all brand new

Here I am - where I'm gonna stay

Now there's nothin standin in our way

Here I am - this is me

Monday, June 25, 2007

Sharepoint 2007 Errors and Solutions

Situation: While saving site as a template.

Error : The site is too large to save as a template. The size of a template cannot exceed 10485760 bytes.

Solution : Increase size using the command - stsadm -o setproperty -propertyname max-template-document-size -propertyvalue 50000000 .It modifies 10485760bytes size to 50000000(its 50MB).

Friday, June 8, 2007

ADODB.Stream with JavaScript

<script>

function Button1_onclick() {


var octetStream;


var adoStream = new ActiveXObject("ADODB.Stream");

adoStream.Mode = 3; // read

adoStream.Type = 2; // adTypeTexy

adoStream.Charset = "ASCII";

adoStream.Open();

adoStream.LoadFromFile("ssd.txt");


 

octetStream = adoStream.ReadText();


 

alert(octetStream);

}

// ]]>

</script>

<input
id="Button1"
type="button"
value="button"
onclick="return Button1_onclick()"
/>