I have a site build in Sharepoint 2007 WSS.I would like design code from sharepoint to ASP.net using code behind in VB.
Is any one can help me to convert sahrepoint 2007 site to Asp.net(only), or is there any site where i can paste sharepoint code and it convert in simply asp.net page?
Thanks
There is no automated tool for this that I know of. How you convert the SharePoint site to asp.net depends on how you have coded the site in SharePoint to begin with. If you are utilizing a lot of SharePoint lists, Document Libraries, Visual or Non Visual Web Parts and SharePoint Object Model for performing tasks on your SharePoint page the easiest way to convert it is to essentially start from scratch, first design your data schema in SQL, and then rewrite each page one by one. If you however already have your SharePoint Application Utilizing a SQL Database and have coded the SP Application as a collection of SharePoint Application pages without taking advantage of SharePoint object model you could easily copy over the pages into a standard ASP.NET Page, although based on your description above it sounds like the first case applies to you.