如何将外部Web ASP.NET控件集成到SharePoint应用程序的页面中?
答案 0 :(得分:0)
外部网站的控制是什么意思?您可以使用page view webpart加载外部页面/这是您要找的内容吗?
答案 1 :(得分:0)
你见过this article about creating an Application page吗?
基本上,在您的应用程序页面中,您可以引用DLL:
<%@ Assembly Name="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>
然后注册标记前缀:
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
然后你可以使用你的控件:
<SharePoint:EncodedLiteral runat="server" text="<%$Resources:wss,approve_pagetitle%>" EncodeMethod='HtmlEncode'/>
您将使用包含ASP.NET Web控件的DLL而不是SharePoint。