#%&~*":?/><|\}{+
Above special characters are not allowed as a site Url while creating the site.
This is specific to SharePoint site, but it can be in general for all other types of sites also.
#%&~*":?/><|\}{+
Above special characters are not allowed as a site Url while creating the site.
This is specific to SharePoint site, but it can be in general for all other types of sites also.
1. You must have received an email from MicrosoftLearning@response.microsoft.com after you have completed your Exam with a Certification ID included in it.
[This Certification ID is your MCP ID]
2. You also need Access Code to complete the process. If you haven't received any such access code. You need to send a mail to MCPHelp@microsoft.com requesting for the same.
3. Next, visit https://mcp.microsoft.com/mcp and enter this access code along with the MCP ID to have your Microsoft Passport associated with your MCP Record. [Thus you need either msn/hotmail id, if you don't have one. You need to create this one too.] And complete the form.
4. Now You may order your MCP Member Kit by visiting https://mcp.microsoft.com/mcp/tools/WelcomeKitValidateAddress.aspx
5. You receive a beautiful certificate signed by Bill gates in next 15-20 working days.
[I have received one; you also deserve it!! so take time and follow the above steps.]
Courtesy by : Harshad Bafna
Generally one would think that what is this meta tag in a HTML form??
Here is the answer,
Meta tag in HTML is generally used for three of the following.
Information inside a meta element describes the document.
Information inside a meta element describes the document's keywords. Which keywords are used by search engine to get information about web pages.
This example demonstrates how to redirect a user if your site address has changed.
Here is the example for the same
<html>
<head>
<meta http-equiv="Refresh"
content="5;url=http://www.w3schools.com">
</head>
<body>
<p>
Sorry! We have moved! The new URL is: <a href="http://www.w3schools.com">http://www.w3schools.com</a>
</p>
<p>
You will be redirected to the new address in five seconds.
</p>
<p>
If you see this message for more than 5 seconds, please click on the link above!
</p>
</body>
</html>
Courtesy By : www.w3schools.com
By default, The maximum size of a file to be uploaded to a server using the ASP.NET FileUpload control is 4MB. You cannot upload anything that is larger than this limit.
To change this size limit, you have to make some changes in the application's web.config:
<system.web>
<httpRuntime maxRequestLength="1048576" executionTimeout="360"/>
</system.web>
maxRequestLength - Attribute limits the file upload size for ASP.NET application. This limit can be used to prevent denial of service attacks (DOS) caused by users posting large files to the server. The size specified is in kilobytes. As mentioned earlier, the default is "4096" (4 MB). Max value is "1048576" (1 GB) for .NET Framework 1.0/1.1 and "2097151" (2 GB) for .NET Framework 2.0.
executionTimeout - Attribute indicates the maximum number of seconds that a request is allowed to execute before being automatically shut down by the application. The executionTimeout value should always be longer than the amount of time that the upload process can take.
We can run javascript on server side events by using ClientScript.RegisterStartupScript
The sample code shows sample use of the feature.
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Text;
public
partial
class
_Default : System.Web.UI.Page
{
protected
void Page_Load(object sender, EventArgs e)
{
StringBuilder sb = new
StringBuilder();
string myMessage = "Hello world!!";
sb.Append("<script language='javascript'>");
sb.Append("alert('" + myMessage + "');<");
sb.Append("/script>");
ClientScript.RegisterStartupScript(this.GetType(), "MsgSummary1", sb.ToString());
}
}
The function allows u to run scripts at run time
Sample is as below:
<html>
<body>
<script language="JavaScript">
function function1() {
var m = window.execScript("alert('test');", "JavaScript");
alert("The method returns always "+'"'+m+'"');
}
</script>
<input type="button" value="Click to execute the script" onclick="function1();">
</body>
</html>
By using document.execCommand of javascript,
Javascript for this is : document.execCommand('Print');
Javascript for this is : document.execCommand('Refresh');
There are certain set of this kind of commands that can be used in conjution with document.execCommand function are as below:
2D-Position
Allows absolutely positioned elements to be moved by dragging.
AbsolutePosition
Sets an element's position property to "absolute."
BackColor
Sets or retrieves the background color of the current selection.
BlockDirLTR
Not currently supported.
BlockDirRTL
Not currently supported.
Bold
Toggles the current selection between bold and nonbold.
BrowseMode
Not currently supported.
ClearAuthenticationCache
Clears all authentication credentials from the cache. Applies only to execCommand.
Copy
Copies the current selection to the clipboard.
CreateBookmark
Creates a bookmark anchor or retrieves the name of a bookmark anchor for the current selection or insertion point.
CreateLink
Inserts a hyperlink on the current selection, or displays a dialog box enabling the user to specify a URL to insert as a hyperlink on the current selection.
Cut
Copies the current selection to the clipboard and then deletes it.
Delete
Deletes the current selection.
DirLTR
Not currently supported.
DirRTL
Not currently supported.
EditMode
Not currently supported.
FontName
Sets or retrieves the font for the current selection.
FontSize
Sets or retrieves the font size for the current selection.
ForeColor
Sets or retrieves the foreground (text) color of the current selection.
FormatBlock
Sets the current block format tag.
Indent
Increases the indent of the selected text by one indentation increment.
InlineDirLTR
Not currently supported.
InlineDirRTL
Not currently supported.
InsertButton
Overwrites a button control on the text selection.
InsertFieldset
Overwrites a box on the text selection.
InsertHorizontalRule
Overwrites a horizontal line on the text selection.
InsertIFrame
Overwrites an inline frame on the text selection.
InsertImage
Overwrites an image on the text selection.
InsertInputButton
Overwrites a button control on the text selection.
InsertInputCheckbox
Overwrites a check box control on the text selection.
InsertInputFileUpload
Overwrites a file upload control on the text selection.
InsertInputHidden
Inserts a hidden control on the text selection.
InsertInputImage
Overwrites an image control on the text selection.
InsertInputPassword
Overwrites a password control on the text selection.
InsertInputRadio
Overwrites a radio control on the text selection.
InsertInputReset
Overwrites a reset control on the text selection.
InsertInputSubmit
Overwrites a submit control on the text selection.
InsertInputText
Overwrites a text control on the text selection.
InsertMarquee
Overwrites an empty marquee on the text selection.
InsertOrderedList
Toggles the text selection between an ordered list and a normal format block.
InsertParagraph
Overwrites a line break on the text selection.
InsertSelectDropdown
Overwrites a drop-down selection control on the text selection.
InsertSelectListbox
Overwrites a list box selection control on the text selection.
InsertTextArea
Overwrites a multiline text input control on the text selection.
InsertUnorderedList
Toggles the text selection between an ordered list and a normal format block.
Italic
Toggles the current selection between italic and nonitalic.
JustifyCenter
Centers the format block in which the current selection is located.
JustifyFull
Not currently supported.
JustifyLeft
Left-justifies the format block in which the current selection is located.
JustifyNone
Not currently supported.
JustifyRight
Right-justifies the format block in which the current selection is located.
LiveResize
Causes the MSHTML Editor to update an element's appearance continuously during a resizing or moving operation, rather than updating only at the completion of the move or resize.
MultipleSelection
Allows for the selection of more than one site selectable element at a time when the user holds down the SHIFT or CTRL keys.
Open
Not currently supported.
Outdent
Decreases by one increment the indentation of the format block in which the current selection is located.
OverWrite
Toggles the text-entry mode between insert and overwrite.
Paste
Overwrites the contents of the clipboard on the current selection.
PlayImage
Not currently supported.
Print
Opens the print dialog box so the user can print the current page.
Redo
Not currently supported.
Refresh
Refreshes the current document.
RemoveFormat
Removes the formatting tags from the current selection.
RemoveParaFormat
Not currently supported.
SaveAs
Saves the current Web page to a file.
SelectAll
Selects the entire document.
SizeToControl
Not currently supported.
SizeToControlHeight
Not currently supported.
SizeToControlWidth
Not currently supported.
Stop
Not currently supported.
StopImage
Not currently supported.
StrikeThrough
Not currently supported.
Subscript
Not currently supported.
Superscript
Not currently supported.
UnBookmark
Removes any bookmark from the current selection.
Underline
Toggles the current selection between underlined and not underlined.
Undo
Not currently supported.
Unlink
Removes any hyperlink from the current selection.
Unselect
Clears the current selection.
Reference from : http://msdn2.microsoft.com/en-us/library/ms533049(VS.85).aspx
Suppose you want to deploy asp.Net website without deploying any source code to webserver. This can be achieve in the following way.
Aspnet_compiler.exe (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ Aspnet_compiler.exe) can help you to achieve this goal.
Step 1.
Run following command in command prompt of the webserver:
Aspnet_compiler -p "D:\MyWEbSite" -v / c:\OnlyAssembly
Here,
D:\MyWEbSite is the path where my website source code resides
c:\OnlyAssembly is the path where assembly dlls will be generate
Step 2
The command will generate the required .dlls and .config files under the folder c:\OnlyAssembly.
Step 3.
Create a virtual directory in IIS and map this directory with that virtual directory.
Step 4.
Your application is deployed on the server without any source code to be deployed on the server. Open the website and browse it ahead!!!
NOTEs:
Please revert back if any queries.
Thanking You,
Indrajeet Kumpavat.
indrajitk@gmail.com
Connection Pooling via connection string.--
ConnectiOnLifeTime - time in seconds AFter which the connection will be destroyed.
MaxPoolSize - Max connection in pool
MinPoolSize - Minimum number of inactive of connection will remain in pool.
Pooling=True
Samples connection string is :
SqlConnection con = new SqlConnection();
con.ConnectionString = "Data source=DataServer;" +
"Integrated Security=true;Initial Catalog=Sales;" +
"Pooling=true; Max Pool Size=200; Min Pool Size=1;"+
"Connection Lifetime=0";
con.Open();
Here is the sample.
var RadioButton1 = document.getElementById(LogoSettingId).children[0].children[0].children[0].children[0];
if (RadioButton1.addEventListener)
{
// Non-IE browsers
RadioButton1.addEventListener('onclick', RadioButton1_click, false);
}
else
if (RadioButton1.attachEvent)
{
// IE 6+
RadioButton1.attachEvent('onclick', RadioButton1_click);
}
else
{
// Older browsers
var currentEventHandler = RadioButton1['onclick'];
if (currentEventHandler == null)
{
RadioButton1['onclick'] = RadioButton1_click;
}
else
{
RadioButton1['onclick'] = function(e)
{
currentEventHandler(e); RadioButton1(e);
}
}
}
Tomorrow you may get a working woman, but you should marry with these facts as well.
Here is a girl, who is as much educated as you are;
Who is earning almost as much as you do;
One, who has dreams and aspirations just as you have because she is as human as you are;
One, who has never entered the kitchen in her life just like you or your sister haven't,as she was busy in studies and competing in a system that gives no special concession to girls for their culinary achievements ;
One, who has lived and loved her parents & brothers & sisters, almost as
much as you do for 20-25 years of her life ;
One, who has bravely agreed to leave behind all that, her home, people who love her, to adopt your home, your family, your ways and even your family name;
One, who is somehow expected to be a master-chef from day #1, while you
sleep oblivious to her predicament in her new circumstances, environment and that kitchen ;
One, who is expected to make the tea, first thing in the morning and cook food at the end of the day, even if she is as tired as you are, maybe more, and yet never ever expected to complain;
to be a servant, a cook, a mother, a wife, even if she doesn't want to;
and is learning just like you are as to what you want from her;
and is clumsy and sloppy at times and knows that you won't like it if she is too demanding,
or if she learns faster than you;
One, who has her own set of friends, and that includes boys and even men at her workplace too, those,who she knows from school days and yet is willing to put all that on the back-burners to avoid your irrational jealousy, unnecessary competition and your inherent insecurities;
Yes, she can drink and dance just as well as you can, but won't,simply because you won't like it, even though you say otherwise ;
One, who can be late from work once in a while when deadlines, just like yours, are to be met;
One, who is doing her level best and wants to make this most important relationship in her entire life a grand success, if you just help her some and trust her;
One, who just wants one thing from you, as you are the only one she knows in your entire house - your unstinted support, your sensitivities and most importantly - your understanding, or love, if you may call it.
But not many guys understand this…
To make the title name custom,
Copy and paste the following code before starting of the content page..
<%@ Page language="C#" MasterPageFile="~masterurl/default.master" title="Assign Editor" inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" meta:progid="SharePoint.WebPartPage.Document"%>
<%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Import Namespace="Microsoft.SharePoint" %>
<%@ Import Namespace="System.Data" %>
<%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<asp:content id="CustomTitle" runat="server" contentplaceholderid="PlaceHolderPageTitle">
Put the custom title here.
</asp:content>
<asp:content id="content2" runat="server" contentplaceholderid="PlaceHolderMain">
table border="0" width="100%" cellspacing="2">
<tr>
<td class="ms-formlabel" valign="top" nowrap="true" width="25%">
<b>Title:</b>
</td>
<td class="ms-formbody" valign="top" width="75%">
……………………..
use
oncopy="return false;"
onpaste="return false;"
For example:
<td oncopy = "return false;" onpaste="return false;" >
<asp:TextBox ID="txtEmail" runat="server" Width="284px"></asp:TextBox>
</td>
tujhase naaraaz nahi zindagi, hairaan hoon main
o hairaan hoon main
tere masoom savalon se pareshaan hooN main
o pareshaan hoon main
jeene ke liye socha hi na tha, dard sambhalane honge
muskuraoon to, muskurane ke karz utaarne honge
muskuraoon kabhi to lagata hai
jaise hontonn pe karz rakhaa hai
tujhase ...
aaj agar bhar ayi hai, boondein baras jaayengi
kal kya pata inke liye aakhen taras jayengi
jaane kahan gum kahan khoya
ek aansu chhupake rakha tha
tujhase ...
zindagi tere gum ne hamain rishte naye samajhaye
mile jo hamain dhoop main mile chhaanv ke thande saaye
o tujhase ...
220 will show like this, Version: 6
.0.37390.39359 ready at Fri, 17 Aug 2007 15:43:08 +0530
250 server Hello [127.0.0.1]
250 2.1.0 .. you@server.com..Sender OK
For help help is there.
To create a new event source in EventLog
create a new entry in registry under "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application
" tag.
Step 1. Type regedit in run
Step 2. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application
Step 3. Create a new key under application tag. "<Name of the source>"
Step 4. Done.
To create a new event source in EventLog
create a new entry in registry under "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application
" tag.
Step 1. Type regedit in run
Step 2. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application
Step 3. Create a new key under application tag. "<Name of the source>"
Step 4. Done.
To authenticate your application using window live id.
--Note: you are required live id. Please create before start register ur application. You can create live id from (http://login.live-int.com/)
Step to register application
<iframe src="http://login.live-int.com/controls/WebAuth.htm?appid=<appid>&context=<context>&style=<style>" width="100px" height="40px" frameborder="0" scrolling="no"> </iframe> |
Peoplepicker: Stsadm property (Office SharePoint Server)
Updated: June 07, 2007
Property name: Peoplepicker
The peoplepicker property is part of the setproperty and getproperty operations. The syntax for the setproperty operation is:
stsadm -o setproperty
-propertyname <property name>
-propertyvalue <property value>
[-url] <URL>
The syntax for the getproperty operation is:
stsadm -o getproperty
-propertyname <property name>
[-url] <URL>
Description
User information that is imported from directory services is available on the Select People and Groups dialog box, also known as the People Picker Web control. Site administrators and other users use this dialog box to select people and groups when they assign permissions. You are permitted to select users only on the domain that Microsoft Office SharePoint Server 2007 is installed.
When a Web application uses Windows authentication, People Picker will search all two-way trusted forests and all two-way trusted domains. However, if you want to search from a one-way trusted forest or a one-way trusted domain, you must run the setapppassword operation, and then run the peoplepicker -searchadforests property.
Properties
Property (-pn) | Value (-pv) | Description | Example values | ||||||||||
peoplepicker-activedirectorysearchtimeout | A valid integer, such as "30" | Configure the timeout when a query is issued to Active Directory. | The default value is "30." | ||||||||||
peoplepicker-distributionlistsearchdomains | A valid URL, such as http://server_name Note: The domain name should be a DNS name. | Restricts the search from a search distribution list to be from a specific subset of domains. | http://contoso-370 | ||||||||||
peoplepicker-nowindowsaccountsfornonwindowsauthenticationmode | Any one of the following values:
| Specifies not to search Active Directory when the current port is using forms authentication. For example, a Web application uses Windows authentication on port 80 and uses forms authentication on port 81. If a user accesses port 81 and attempts a search, results are returned when People Picker is used. However, when the value is "True," People Picker will only search from the membership provider. If the value is "False," the people picker will search both the membership provider and the Windows Active Directory. | The default value is "Yes." | ||||||||||
peoplepicker-onlysearchwithinsitecollection | Any one of the following values:
| Displays only users that are members of the site collection. Only users that are already added to the site collection are displayed in the People Picker. This prevents anyone from browsing your user directory through the People Picker. | A value of "Yes" permits a user to search within their site collection. A value on "No" does not permit a user to search within their site collection. | ||||||||||
peoplepicker-searchadcustomquery | A valid string that specifies the custom query | Permits the administrator to set the custom query that is sent to Active Directory. | Some valid examples are:
where SomeAdAttribute and AnotherAdAttribute are the names of some indexed attributes in Active Directory. Important: If the property value is not a correct Active Directory query, People Picker will fail. Also, if the searched attribute is not an indexed attribute in Active Directory, the performance of Active Directory will be very slow. The People Picker can only do wildcard searches for Active Directory Windows group names. With any role provider other than the ones included with Office SharePoint Server 2007, the role provider lookup is specific to the entire name. For example, if you have a group called "Readers" and you enter "Read" in the Select People and Groups dialog box, it will not find your group; if you enter "Readers" it will. | ||||||||||
peoplepicker-searchadforests | A valid list of forests or domains | Permits a user to search from a second one-way trusted forest or domain. By default, Office SharePoint Server 2007 talks only to the domain controller for the domain in which Office SharePoint Server 2007 was installed. | The format of the list of forests or domains value includes the following:
Note: If "Password" is used, you need to run stsadm –o setapppassword –password <somekey> on every front-end Web server first. The <somekey> could be any string. We will use <somekey> as the key to encrypt the password in the "domain:DnsName,LoginName,Password" or "forest:DnsName,LoginName,Password" and store the encypted password in the database. However, if the domains or forests are trusted, it is not necessary to pass in the LoginName or Password. The following format is used: forest:DnsName or domain:DnsName. |
Examples
Change the Active Directory search timeout
If you have 10 Active Directory directories to search and you do not want to let the user to wait too long, you can configure the timeout to be 10 seconds per Active Directory. To do this, use the following syntax:
stsadm -o setproperty -pn peoplepicker-activedirectorysearchtimeout –pv 10
Restrict a search distribution list to a subdomain
To restrict a search for a distribution list to only be corp.fabrikam.com and ntdev.corp.fabrikam.com, use the following syntax:
stsadm -o setproperty -url http://contoso-370 -pn peoplepicker-distributionlistsearchdomains -pv corp.fabrikam.com;dev.corp.fabrikam.com Note: The domain name should be a Domain Name System (DNS) name and should be separated by a semicolon. If no values were set, all trusted domains or the domains listed in the configuration are searched. Display users within a site collection Normally, users that are already added to the site collection are displayed in the People Picker. This prevents anyone from browsing your user directory through the People Picker. However, in a hosting scenario, you do not want to let the end users to be able to search users from Active Directory. We only want the end users be able to search users that are already in the site collection. But suppose the end user already knows the login name in Active Directory, we still allow end users to invite the user with fully qualified logon name. If you want users to be able to search within a site collection, use the following syntax: stsadm -o setproperty –url http://server –pn peoplepicker-onlysearchwithinsitecollection –pv yes If you do not want users to be able to search within a site collection, use the following syntax: stsadm -o setproperty –url http://server –pn peoplepicker-onlysearchwithinsitecollection –pv no Create a custom query in Active Directory To create a query that searches on the last name, use the following syntax: stsadm -o setproperty -pn peoplepicker-searchadcustomquery -pn (sn={0}*) Search additional domains or forests To enumerate a list of users by using People Picker from a second forest or domain, use the following syntax: stsadm –o setproperty –pn peoplepicker-searchadforests –pv <list of forests or domains> -url <webapp> Search membership providers using Windows authentication Do not search Windows Active Directory when the current port is using forms authentication. To search from a membership provider only, use the following syntax: stsadm -o setproperty -url http://server -pn "peoplepicker-nowindowsaccountsfornonwindowsauthenticationmode" -pv yes To search a membership provider and Windows Active Directory, use the following syntax: stsadm -o setproperty -url http://server -pn "peoplepicker-nowindowsaccountsfornonwindowsauthenticationmode" -pv no Note: If the value is set to "Yes," the People Picker will not try to search or resolve a user against Active Directory if the current zone does not use Windows authentication.
setup | Performs configuration for SharePoint Products and Technologies based on the installation mode. Also repairs the configuration. If the product or technology is installed in stand-alone mode, then stand-alone configuration is done. If the product or technology is not in stand-alone mode, you must complete the initial configuration by using the SharePoint Products and Technologies Configuration Wizard instead of the psconfig.exe command-line utility. To run the wizard, on the Start menu, point to All Programs, point to Administrative Tools, and then click SharePoint Products and Technologies Configuration Wizard. If you want to repair a stand-alone installation, first run setup /repair (for more information, see the Setup Help system), and then psconfig.exe -setup. For server farm installations, after running setup /repair, use the SharePoint Products and Technologies Configuration Wizard instead of the psconfig.exe command-line utility. Takes the following optional parameter: [-lcid <1033>] The locale ID (LCID) that specifies the installation language. Example psconfig.exe -cmd setup |
There she was just a walkin' down the street singin'
Do wah diddy diddy dum diddy do
Snappin' her fingers and a shufflin her feet singin'
Do wah diddy diddy dum diddy do
She looked good (looked good) She looked fine (looked fine)
She looked good she looked fine, and I nearly lost my mind.
Before I knew it she was walkin' next to me singin'
Do wah diddy diddy dum diddy do
Holdin' my hand just as natural as can be singin'
Do wah diddy diddy dum diddy do
We walked on (walked on) To my door (my door)
We walked on to my door, then we kissed a little more.
Oh, I knew we was fallin' in love.
Yes I did so I told her all the things I've been dreamin' of.
Now we're so happy nearly every single day singin'
Do wah diddy diddy dum diddy do
We're so happy and that's how we're gonna stay
Do wah diddy diddy dum diddy do
Well I'm hers (I'm hers) And she's mine (she's mine)
Well I'm hers and she's mine, wedding bells are gonna chime.
Oh, I knew we was fallin' in love.
Yes I did so I told her all the things I've been dreamin' of.
Now we're together nearly every single day singin',
Do wah diddy diddy dum diddy do
We're so happy and that's how it's gonna stay singin',
Do wah diddy diddy dum diddy do
Well I'm hers (I'm hers) And she's mine (she's mine)
Well I'm hers and she's mine, wedding bells are gonna chime.
Oh...Oh yeah
Do wah diddy diddy dum diddy do (We're singin)
Do wah diddy diddy dum diddy do
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
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).