How to add custom ASP.NET pages into sharepoint? I am very new to sharepoint but what I realized is that I can only make plain text pages or links. but what if I have a website already built in ASP.NET and want to add it through sharepoint. Or is it possible to build the website itself from sharepoint including dynamic server side controls like buttons, trees ....
See these questions which should cover everything you need:
- How would you convert an ASP.NET site to work as a SharePoint site?
- Moving from custom ASP.NET application to Sharepoint Services
- Deploying custom Asp.net applications to same IIS site as Sharepoint
- SharePoint - ASP.Net Controls Integration
- Sharepoint controls in ASP.NET application
Also this page on SharePoint Dev Wiki.
If you want some .aspx-Pages in a SharePoint-Website, you can build a SharePoint-Module Feature containing the .aspx-Pages.
See How to: Provision a File and Create and Use a SharePoint Feature Package
Simple answer: put your *.aspx files in inside the _layouts folder, usually located at
c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS\
afterwards you can access you page (named page1.aspx for example) through the sharepoint site by: http://your site name/_layouts/page1.aspx
You can have inline code and/or code-behind, just like in a normal aspx page.
However, please note that pages added through this method are called application pages, meaning that they cannot be customized (easily) by the user and are available under all site collections in your farm.
SharePoint supports another kind of pages, called Site Pages which are site-specific, you can read more about them here.
This Visual How To walks you through the process of creating an application page step by step.
Creating an Application Page in Windows SharePoint Services 3.0 http://msdn.microsoft.com/en-ca/library/bb418732.aspx
The presenter of the video, Ted Pattison, has a book that is a great resource to help you get up and started with SharePoint development.
Inside Windows SharePoint Services 3.0 http://www.amazon.com/dp/0735623201?tag=g6consulswebs-20
Sorry to say this, but you are asking us to do the coding FOR you basically, seeing the comments you added:
i couldnt do any of that. i dont know is it me who is stupid or what!! but i really got tired of that. i have been searching for 2 weeks. can u just tell me simple steps, i'd be grateful
Although this site is here to help, we are not going to do that. (at least I'm not).
IMHO, digging around how to do new things you come across (CHALLENGES!) is what makes programming so much fun.
You do know ASP.NET so to see, but I guess you lack the will to get into SharePoint and it's Feature / Solution based deployment Framework.
Alex's links are excellent reading material, I suggest you try again, it really isn't that hard.