Click here to Skip to main content
15,897,273 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Which is the best book to learn sharepoint with realtime examples.
Posted
Comments
Ankur\m/ 1-Jul-10 8:05am    
Use "Add Comment" below an answer to discuss with a user. User is not notified if you add an answer and so may not see your reply.

1 solution

I hate to go through 500+ Pages book, How I started was on job training.

I would suggest you get created with a SharePoint site, from your System admin.

If you are the one who need to kick start the SharePoint. Then follow the steps and for each of the steps you can find ample number of links using Google

1. Install SharePoint and Configure it.
2. Create a Site Collection
3. Go to the Site and in the Right Corner you will find a Menu called Site Settings
4. Select that and play around with each and every options out there.
5. Most of the options can be understood by the Name
6. If you struck up some where come to SO or Start over again.
7. Make sure that you always ask the question why this behaves this way & why this implemented this way.
8. Try creating pages Same Site Settings Menu has option to create page.
9. There is some thing called Web Part which is actually a Plug-gable component UI/ functionally which can be customized as per the user needs.
10. Try using those webparts (Lost of Out of the Box)
11. Later move in to WebPart development,create your own, deploy it
12. Start using the Microsoft.SharePoint.dll to access the SharePoint site using you custom code.



To give you a brief description.

Microsoft Office SharePoint Server 2007 is an integrated suite of server capabilities that can help improve organizational effectiveness by providing comprehensive content management and enterprise search, accelerating shared business processes, and facilitating information-sharing across boundaries for better business insight. Additionally, this collaboration and content management server provides IT professionals and developers with the platform and tools they need for server administration, application extensibility, and interoperability.

1. I call it as Application development platform
2. For anything you wanted to do there will be a option directly / indirectly in SharePoint
3. Basically it is a Web Application built on top of ASP.NET 2.0
4. Main entry point to it is an Web Application (Central Administration Site) you get this once you install SharePoint.
5. This is where you can Create Web Application (Nothing but a Site in the IIS & Content DB)
6. Yes you read it right Database,SharePoint stores all its content in Database
7. Web Application is directly not usable (Its like empty DB and Empty IIS site) you need to have some content to be display to the user.
8. Then Site collection comes, it give content to the User.You need to at least create Site collection under Web Application (Through Central Admin).
9. While Creating Site Collection you will be provided with a Site Template (Template is nothing but a Blue print sort of thing that will dictate what your site will look like and what it have) there are template For Project Management,Bug Tracking (has options to track Bug, kind of basic infrastructure that will be needed in any Bug Tracking system).
10. Next level is Sub site, under site collection you can have Site( here too you have an option to select the template), and under that Site you can have another Sub Site so on.
11. And there is another important thing in SharePoint called List, its a similar to Table in SQL server but not exactly same (because list content are internally stored in SQL Tables), and List contains Fields (Similar to Column in Table). You can use them to store your custom data. While creating the list also you will have Templates (Say for example to Represent a Announcement you have a template, this will have all the fields that are needed to represent announcement)
12. And you have a Option to Create your own List Structure as well.
13. There is a special kind of List in SharePoint called Document Library which can store documents.
14. One final thing Security, managing Security is out of the Box. You can control who has access to you Site and what they can Access (Only Announcement , only Published documents) and what they can do with the item (Edit/Readonly/Delete) etc.
15. You can create fine grained permission as you wish.

Hope So much of Typing helps some one out there :).

Welcome to THE SHAREPOINT WORLD



HTH
 
Share this answer
 
v2
Comments
Ankur\m/ 1-Jul-10 8:03am    
[Moved from answer]:
Priya wrote: "Thanks. but I need a book from which i can buy and learn sharepoint."

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900