views:

164

answers:

2

I i have the asp.net web site with c# + sql server 2008 connectivity + css + javascripts + ajax . I have a solution. i want to run this site under sharepoint . What i have to do for integrate this ?

A: 

I haven't had any luck trying to get another site to co-exist with SharePoint. Is it not possible for you to create this site of yours in its own web site, with its own app pool, and then just link to it from SharePoint?

JL
i am not getting JL , please explain.... hope this will work for mr
Lalit
+1  A: 

There are several options. The first is a simple IFrame webpart that hosts the entire application in a frame. The page viewer webpart is built into sharepoint, and does this for you.

The second is using Application Pages. I have not done this, but here is an MSDN article on them:

http://msdn.microsoft.com/en-us/library/bb418732.aspx

The third is to embed the controls of you app into Webparts, and then place these into web part zones on sharepoint pages.

The approach you take depends on the size of your app and the time you have to integrate it. The IFrame Approach is quick and dirty, while the webpart approach is much more native, but can take a long time for large apps.

AlexWilson