tags:

views:

48

answers:

2

I have to develop an appliction (Asp.Net - maybe MVC) that would be integrated into SharePoint 3.0. This is the first time I have anything to do with SharePoint and I'd like to pick up the basics quickly. I haven't found any reasonable online resources - do you know any? Unfortunately, I don't have time to buy and read a book. Thanks.

+2  A: 

When you say integrate do you mean simply have it available inside of sharepoint? If so then you don't need any books or tutorials it is very simple to embed your apps into sharepoint. We do this all of the time due to limitations within sharepoint. We write our ASP.net apps and use a web site web part that allows you to enter some basic information (such as the location of the web site) into the web part and then it is displayed right within sharepoint.

JonH
yes you are absolutely right sharepoint can provide you with additional "web parts" such as header information, footer information, or even links on the left or right side of the Sharepoint portal. Yes this works for ASP.net MVC as well.
JonH
Thanks Jon. So, when you enbed you application into SharePoint, does it only provide some GUI elements such as a header, footer and navigation or is there something more you get from it? Also, would that work with ASP.NET MVC?
This approach is really just dropping your application into an iframe on the SharePoint site, which exactly as you said, is fine if you're only looking to keep the navigation in tact. If you're wanting to do any SharePointy things integrated with your existing app you'll need a different approach.
OedipusPrime
+1  A: 

Creating and Deploying SharePoint Solution Files

SharePoint 2007 Deployment: Overview

Tech Talk with Brett Maytom

Sharepoint is not a good development platform - This will give you a good idea of what to expect and what NOT to expect from SharePoint.

Todd Bleeker's Blog

Tobias Zimmergren

That's all I can think of for a start. If you have more specific questions I can direct you to different resources.

Repo Man