ASP.NET is an application framework developed by Microsoft. It is built on top of the .NET Common Language Runtime (CLR). SharePoint is built from the ASP.NET framework.
1
vote
2answers
1k views
When to use application pages (aspx) versus web parts?
I'm struggling with this question at the moment...
Basically I'm pulling a set of data out of a DB table related to our LOB application, listing it, and then want to click through from this list to ...
1
vote
1answer
159 views
How do I change the authentication of an existing ASP.NET application to integrate it with SharePoint?
I have a business portal configured using "Online SharePoint Service". Now I want to integrate our LMS (Leave Management System) with that portal. Below is little bit more information and difficulties ...
0
votes
1answer
124 views
reusing a webpart in another solution in sharepoint 2010 results a “500 INTERNAL SERVER ERROR”
I have a webpart that was used in an old visual studio solution as a stand alone project.
I copied this webpart project to a new visual studio solution, deployed the webpart to the new web ...
2
votes
3answers
516 views
Any problems using Smartparts to host ASP.NET user controls directly in Sharepoint?
I am thinking about using SmartParts (http://www.codeplex.com/smartpart) to directly Host ASP.NET user controls in sharepoint.
This needs however that I manually copy all user controls to all WFE ...
1
vote
4answers
252 views
What is something I should to to help me to Learning SharePoint?
I have a list of items I was told I should learn below. Can you tell me if there is one that I should remove and one I can add that will help me learn sharepoint backend development. I have been ...
1
vote
2answers
409 views
Session object is null in page_load on 64 bit
I am having a strange problem. I am porting an asp.net web application to sharepoint (as a web part) and I've converted most of it to a webpart that loads an .ascx user control. However I have some ...
4
votes
2answers
1k views
Using Claims Based Authentication to integrate with an ASP.Net application
I have been Googling a problem that I have with trying to integrate the web application that I am working on with SharePoint 2010.
The web application is a wiki style tool that allows users to log ...
0
votes
2answers
304 views
Seeing the actual error behind ‘An unexpected error has occurred’ in Sharepoint 2010
In MOSS 2007, we could update the tag's callstack attribute to true and then customerrors mode to "Off" to see the actual error behind the 'An unexpected error has occurred' message. Does it apply ...
2
votes
2answers
474 views
When to use CreateChildControls() vs. embedding in the ASPX
I'm developing a webpart for SharePoint 2007 and have seen several posts that advise to do all the creation of controls in the code-behind. I'm transitioning from Java J2EE development so I don't have ...
0
votes
3answers
744 views
SharePoint (ASP.NET) Application works fine until morning, only an IISRESET fixes problem
A colleague has developed a SharePoint web-part application (which was developed in VS2005), and deployed on MOSS 2007. We use an .ASCX file for deployment.
This application works fine all day, but ...
1
vote
4answers
643 views
Does this leak? SharePoint SPSite and SPList code
Would this code cause an SPList object to leak? It's enclosed in a Using statement but that's in a sub routine.
String site = "http://server/sites/site";
foreach (string s in ...
1
vote
0answers
308 views
Exception loading SharePoint dependent assembly using reflection [closed]
I've created a custom Central Admin .aspx page that inherits from the OperationsPage base class, which is defined in Microsoft.SharePoint.ApplicationPages.Administration.dll. Naturally, I added a ...
0
votes
1answer
527 views
Response.BinaryWrite Div [closed]
Is there a way to write PDF to a div from DataBase i.e. Retrieve a Byte[] from Database and Reponse.BinaryWrite to a div.
We do similar thing for Images using src = "anotherpage.aspx" where image is ...
3
votes
3answers
2k views
ASP.NET User Control in SharePoint WebPart
I want to use the Visual Studio designer to make controls for my WebPart... I've been pointed to two approaches that seem ok. First, SmartParts... which I'll look into later. Second was to create an ...
1
vote
3answers
517 views
Guidance for using ASP.net MVC as part of Sharepoint 2007
I am interested in using ASP.Net Mvc 2.0 as the basis for a website but it will need to hook into SharePoint 2007. Am I just dreaming that it is possible or should I just stick with webforms?
Has ...
1
vote
2answers
140 views
Copy Sharepoint Sites/Doc Libraries For Development Purposes
Sorry if I'm getting the terminology wrong, I'm very new to sharepoint. Basically, a site I'm working on uses sharepoint for some versioning stuff in the background. I would like to be able to take ...
2
votes
0answers
248 views
Custom XML Document Content Type with ASP.NET Forms in MOSS 2007/WSS 3.0 [closed]
I'd like to create a custom content type in SharePoint 2007 (WSS 3.0) that inherits from the existing XML Document content type (i.e. an InfoPath form) but I want to use custom ASP.NET forms to edit ...
1
vote
1answer
327 views
I want to use ASPCOMPAT=true as an attribute of @Page directive
I get the following error on SharePoint pages: "aspcompat not alowed on this page" when I try to use it. Please help.
1
vote
2answers
724 views
STS site definition different “default.aspx” - (default document in site collection) (Solved)
I have an STS-based site collection and I have changed the "default.aspx" default document reference as follows:
My onet.xml:
<Module Name="Default" Url="" Path="">
<File ...
2
votes
2answers
1k views
How do I allow users to change their password (ASP.NET membership)
Title says it all. I have an ASP.Net membership database (extranet) site set up, but users have no way to change thier passwords.
