A very good tool for creating Application Defination Xml for both Database and WebServices in BDC
Integrated with SharePoint Server 2007 Software Development Kit (SDK).
After installing SDK you can find it under:
C:\Program Files\2007 Office System Developer Resources\Tools\BDC Definition Editor
Wednesday, July 29, 2009
Business Data Catalog Definition Editor
Must have for MOSS developers
1. SharePoint Server 2007 SDK: Software Development Kit
http://www.microsoft.com/downloads/details.aspx?FamilyId=6D94E307-67D9-41AC-B2D6-0074D6286FA9&displaylang=en
Monday, July 27, 2009
Create a sharepoint webpart
Steps:
1. Create a simple webusercontrol . Put necessary code and controls in it.(For ex, datagrid and code to connect database.) Do not maintain separate code file (ascx.cs) for web user control. Put code in same ascx file only.
2. Put the webusercontrol (.ascx file) in layout folder of sharepoint site where you want to deploy the webpart.
3. Go to VS2008. (Please install VSSWSE.exe before that.)
4. Create new Project -> Select webpart from Visual C# -> sharepoint
5. Add following code :
protected override void CreateChildControls()
{
base.CreateChildControls();
// TODO: add custom rendering code here.
Control objControl = Page.LoadControl("/_layouts/WebUserControl.ascx");
this.Controls.Add(objControl);
}
6. Build and deploy the solution.
7. Go to the sharepoint site -> Site Actions -> EditPage ? Add Web Part.
8. Select your webpart from the list.
1. Create a simple webusercontrol . Put necessary code and controls in it.(For ex, datagrid and code to connect database.) Do not maintain separate code file (ascx.cs) for web user control. Put code in same ascx file only.
2. Put the webusercontrol (.ascx file) in layout folder of sharepoint site where you want to deploy the webpart.
3. Go to VS2008. (Please install VSSWSE.exe before that.)
4. Create new Project -> Select webpart from Visual C# -> sharepoint
5. Add following code :
protected override void CreateChildControls()
{
base.CreateChildControls();
// TODO: add custom rendering code here.
Control objControl = Page.LoadControl("/_layouts/WebUserControl.ascx");
this.Controls.Add(objControl);
}
6. Build and deploy the solution.
7. Go to the sharepoint site -> Site Actions -> EditPage ? Add Web Part.
8. Select your webpart from the list.
Saturday, July 25, 2009
Learning Resources for sharepoint
Learning Resources for sharepoint
1. http://manish-sharepoint.blogspot.com/2009/04/training-material-on-microsoft-office.html
2. http://sharepointdevtest.blogspot.com/
3. http://qmoss.blogspot.com/
1. http://manish-sharepoint.blogspot.com/2009/04/training-material-on-microsoft-office.html
2. http://sharepointdevtest.blogspot.com/
3. http://qmoss.blogspot.com/
Thursday, July 23, 2009
Check "Sign In Automatically" checkbox in Login.aspx of sharepoint
You will required to hide sign in me automatically checkbox.
You will be required to put following java script in the login page.
You will be required to put following java script in the login page.