如何创建自定义Sharepoint 应用程序页 (Creating an Application Page in Windows SharePoint Services 3.0)

 应用程序页(也称作“_ layouts”页)存储在C:/Program Files/Common Files/Microsoft Shared/web server extensions/12/TEMPLATE/LAYOUTS目录中。IIS中对应的虚拟目录为:_layouts.

 

应用程序页使用application.master母版页,并继承Microsoft.SharePoint.WebControls.LayoutsPageBase,此页面只有认证通过并有一定的授权的用户才能访问。

一个简单的应用程序页如下所示:

  1. <%@ Assembly Name="Microsoft.SharePoint,Version=12.0.0.0, Culture=neutral,PublicKeyToken=71e9bce111e9429c" %>
  2. <%@ Page Language="C#" MasterPageFile="~/_layouts/application.master"  
  3. Inherits="Microsoft.SharePoint.WebControls.LayoutsPageBase" %>
  4. <%@ Import Namespace="Microsoft.SharePoint" %>
  5. <script runat="server">
  6.   protected override void OnLoad(EventArgs e) 
  7.   {
  8.         SPWeb web = SPContext.Current.Web ;
  9.         SPUser currentUser = web.CurrentUser;
  10.         lblUserName.Text = currentUser.Name;
  11.         lblUserLogin.Text = currentUser.LoginName;
  12.         lblUserEmail.Text = currentUser.Email;  
  13.   }
  14. </script>
  15. <asp:Content ID="Main" contentplaceholderid="PlaceHolderMain" runat="server">
  16.   <table border="1" cellpadding="4" cellspacing="0" style="font-size:12">
  17.     <tr>
  18.       <td>CurrentUserName:</td>
  19.       <td><asp:Label ID="lblUserName" runat="server" /></td>
  20.     </tr>
  21.     <tr>
  22.       <td>CurrentUserLogin:</td>
  23.       <td><asp:Label ID="lblUserLogin" runat="server" /></td>
  24.     </tr>
  25.     <tr>
  26.       <td>CurrentUserEmail:</td>
  27.       <td><asp:Label ID="lblUserEmail" runat="server" /></td>
  28.     </tr>
  29.   </table>
  30. </asp:Content>
  31. <asp:Content ID="PageTitle" runat="server"
  32.              contentplaceholderid="PlaceHolderPageTitle" >
  33.   Hello World
  34. </asp:Content>
  35. <asp:Content ID="PageTitleInTitleArea" runat="server"
  36.              contentplaceholderid="PlaceHolderPageTitleInTitleArea" >
  37.   The Quintessential 'Hello World' Application Page
  38. </asp:Content>

另:_layout下的页面也可以不继承Sharepoint的类,

如:

 

  1. <%@ Page Language="C#" %>
  2. <%@ Assembly Name="Microsoft.SharePoint,Version=12.0.0.0, Culture=neutral,PublicKeyToken=71e9bce111e9429c" %>
  3. <%@ Import Namespace="Microsoft.SharePoint" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <script runat="server">
  6.   protected override void OnLoad(EventArgs e) 
  7.   {
  8.         SPWeb web = SPContext.Current.Web ;
  9.         SPUser currentUser = web.CurrentUser;
  10.         lblUserName.Text = currentUser.Name;
  11.         lblUserLogin.Text = currentUser.LoginName;
  12.         lblUserEmail.Text = currentUser.Email;  
  13.   }
  14. </script>
  15. <html xmlns="http://www.w3.org/1999/xhtml" >
  16. <head runat="server">
  17.     <title>无标题页</title>
  18. </head>
  19. <body>
  20.     <form id="form1" runat="server">
  21.     <div>
  22.      <table border="1" cellpadding="4" cellspacing="0" style="font-size:12">
  23.     <tr>
  24.       <td>CurrentUserName:</td>
  25.       <td><asp:Label ID="lblUserName" runat="server" /></td>
  26.     </tr>
  27.     <tr>
  28.       <td>CurrentUserLogin:</td>
  29.       <td><asp:Label ID="lblUserLogin" runat="server" /></td>
  30.     </tr>
  31.     <tr>
  32.       <td>CurrentUserEmail:</td>
  33.       <td><asp:Label ID="lblUserEmail" runat="server" /></td>
  34.     </tr>
  35.   </table>
  36.     </div>
  37.     </form>
  38. </body>
  39. </html>

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
自定义 SharePoint 登录面的后台代码,需要进行以下步骤: 1. 创建一个新的 SharePoint 项目,并添加一个新的 Application Page。 2. 在 Application Page 中添加一个 ASP.NET 登录控件,以便用户可以输入其凭据。 3. 使用 SharePoint 对象模型或 CSOM(客户端对象模型)来验证用户凭据。 4. 如果凭据有效,则将用户重定向到 SharePoint 站点的默认面。 以下是一个简单的示例代码,可以作为参考: ```c# using Microsoft.SharePoint; using Microsoft.SharePoint.WebControls; using System; using System.Web.UI.WebControls; namespace CustomLoginPage.Layouts.CustomLoginPage { public partial class Login : LayoutsPageBase { protected void Page_Load(object sender, EventArgs e) { // Check if the user is already authenticated if (SPContext.Current.Web.CurrentUser != null) { // Redirect to the default page SPUtility.Redirect(SPContext.Current.Web.Url, SPRedirectFlags.Default, HttpContext.Current); } } protected void LoginButton_Click(object sender, EventArgs e) { // Authenticate the user using SharePoint object model or CSOM bool isAuthenticated = AuthenticateUser(UsernameTextBox.Text, PasswordTextBox.Text); if (isAuthenticated) { // Redirect to the default page SPUtility.Redirect(SPContext.Current.Web.Url, SPRedirectFlags.Default, HttpContext.Current); } else { // Display an error message ErrorLabel.Text = "Invalid username or password"; } } private bool AuthenticateUser(string username, string password) { // TODO: Authenticate the user using SharePoint object model or CSOM // You can use the following code to authenticate the user using SharePoint object model: //using (SPSite site = new SPSite(SPContext.Current.Web.Url)) //{ // using (SPWeb web = site.OpenWeb()) // { // if (web.Site.WebApplication.UseClaimsAuthentication) // { // return SPClaimsUtility.AuthenticateFormsUser( // Context.Request.UrlReferrer, // username, // password); // } // else // { // return web.Authenticate(username, password); // } // } //} // Replace the above code with your own authentication logic return true; } } } ``` 请注意,此示例仅演示了如何在后台代码中验证用户凭据。要完全自定义 SharePoint 登录面,您还需要编写自己的 HTML 和 CSS 代码,以及处理其他相关的逻辑。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值