How to integrate an external web ASP.NET control into a SharePoint application's page?
views:
136answers:
2
A:
What did you mean by External Website's control? You can use the page view webpart to load an external page/ Is this what you are looking for?
Shoban
2010-02-15 15:35:11
We use some ASP.NET Web Controls which we need to use for a SharePoint application's page.
Ahmed
2010-02-15 15:52:37
A:
Have you seen this article about creating an Application page?
Essentially, inside your application page you can reference the DLL:
<%@ Assembly Name="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>
Then register a tag prefix:
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
Then you can use your controls:
<SharePoint:EncodedLiteral runat="server" text="<%$Resources:wss,approve_pagetitle%>" EncodeMethod='HtmlEncode'/>
Instead of SharePoint, you'll be using the DLL that contains your ASP.NET web controls.
Kit Menke
2010-02-15 17:53:27
A variation of this is the Son Of Smart Part type tools. They essentially wrap a server based User Control within a web part. This of course assumes the user control exists within the SharePoint root folder, etc
John Ptacek
2010-02-16 16:32:01