How to Take the Backup of SubSite in MOSS 2007

Hi Devs,
If you want to take the backup of subsite in command prompt.

stsadm.exe is in the following installation path”C:Program FilesCommon FilesMicrosoft Sharedweb server extensions12BINstsadm.exe”

Syntax:
[...]


Best Practices: Using Disposable Windows SharePoint Services Objects

When am started program using sharepoint objects. I found little bit difficult to understand about the sharepoint objects lifetime and best approach to dispose it. I found the following MSDN article which helps me a lot to learn and understand about sharepoint objects disposal.

Refer it here


Microsoft Services + Architect Forum @ Bangalore

For decades, companies have been running their software on their own infrastructure. Software + Service is a new delivery model where companies pay, not for owning the software itself, but for using it. In this scenario, the software provider is responsible for its availability (maintenance, scalability, disaster recovery, etc.,) and gets paid for the same.Delivering [...]


Programmatically Attach File to InfoPath

Hi Devs,
If you want to Programmaticall add attachment to your infopath file. Use the Following Function :

private void btnSelect_Click(object sender, EventArgs e)
{
dlgOpen.ShowDialog();
txtFile.Text = dlgOpen.FileName;
string[] str = txtFile.Text.Split(”);
fileName = str[str.GetUpperBound(0)].ToString();
}
private void btnAttach_Click(object sender, EventArgs e)
{
FileStream fs = new FileStream(txtFile.Text, FileMode.Open);
byte[] [...]


Site Restore in MOSS 2007

To Restore the Site in SharePoint 2007

stsadm.exe is in the following installation path”C:Program FilesCommon FilesMicrosoft Sharedweb server extensions12BINstsadm.exe”

Syntax :
stsadm.exe -o restore -url -filename

Example :
stsadm.exe -o restore -url http://localhost:2100/ -filename backup.dat

If you are trying to restore with the empty webapplication then the above command will successfully restore your backup.

If you want to restore your backup [...]


.Net Source Code To be Released

Hi Devs,
Its very very hard to believe, but its true Microsoft is going to Release .Net Source Code.

Info From Jim Galasyn’s Blog

We are releasing the source code for .NET Framework base class libraries under the Microsoft [...]


Site Backup in MOSS 2007

To take the backup in moss 2007 in command promp

stsadm.exe is in the following installation path
“C:Program FilesCommon FilesMicrosoft Sharedweb server extensions12BINstsadm.exe”

Syntax :
stsadm.exe -o backup -url -filename

Example :
[...]


How to Upload Exe Files in SharePoint Document Library

If you are getting error while uploading exe file or anyother blocked files.

Follow the steps below to upload the files

Open Central Administration
in the Operation Tab
[...]


How to Become an MVP

How to become an MVP:

To become an MVP you should do following stuffs regularly

Active Participation in Communities
Writing Technical Articles
Participation in Technical Groups
White Papers
Speaker in Conferences
Speaker in Webinars

If you have any queries please feel free to mail me @ Uday.Ethirajulu@hotmail.com

Refer


Free SharePoint Web Parts

Hi SharePoint Dev’s,
Mark Kruger has given the list of free sharepoint webparts

http://www.sharepointblogs.com/mkruger/archive/2007/06/26/free-sharepoint-web-parts-3rd-party.aspx

Check it.