R – Integrating an existing ASP.NET application into SharePoint

asp.netsharepoint

What do I need to do to integrate an existing ASP.NET application into SharePoint? Are there any pitfalls, difficulties or is it a relatively easy process?
I'm completely new to SharePoint.
The version of the ASP.NET app is 3.5
The version of SharePoint is 3.0 (2007) running on IIS 6.
Thanks

Best Answer

SInce Sharepoint is based on ASP.NET they interact without any problems. Our way of going about this is to encapsulate all ASP.NET functionality in USerControls / WebControls (so no actions are performed in actual .aspx pages, they all have basically one or more usercontrols on them that do the work), then use those in a WebPart or in the open source SmartPart.