• SharePoint Designer 开发 Aspx表单


    转载:http://ceapet.com/blog/?p=363

    SharePoint Designer 开发 Aspx表单
    目标,在pages目录下开发test.aspx,要求该页面能使用网站集的母版页,实现页面与其它网站页面布局一致。

    使用SharePoint Designer打开http://moss,打开pages文件夹,右键新建aspx页,删除默认内容,将以下内容复制到页面中。

    <%@ Page Language=”C#”  MasterPageFile=”../_catalogs/masterpage/default.master”%>
    <%@ Import Namespace=”Microsoft.SharePoint”%>
    <%@ Import Namespace=”System.Collections” %>
    <%@ Import Namespace=”Microsoft.SharePoint” %>
    <%@ Import Namespace=”Microsoft.SharePoint.WebControls” %>
    <%@ Import Namespace=”Microsoft.SharePoint.WebPartPages” %>

    <asp:Content ContentPlaceHolderId=”PlaceHolderMain” runat=”server”>
    <script type=”text/c#”  runat=”server” >
    在服务器上运行的脚本
    </script>

    <asp:Label ID=”LabelMsg” runat=”server” ForeColor=”#339933″ Font-Size=”13px”></asp:Label>

    </asp:Content>

    通过SharePoint Designer 2007的代码自动提示功能,你会发现<script 标签下没有提供runat=”server”这个选项,导致以为<script不支持runat=”server”的误解,其实,这是必须的。

    你可能还要设web.config

    <SafeMode MaxControls=”200″ CallStack=”false” DirectFileDependencies=”10″ TotalFileDependencies=”50″ AllowPageLevelTrace=”false”>
    <PageParserPaths>
    <PageParserPath VirtualPath=”test.aspx” CompilationMode=”Always” AllowServerSideScript=”true” />
    </PageParserPaths>
    </SafeMode>

  • 相关阅读:
    信息和熵
    【算法】欧几里得算法与青蛙约会oj
    【算法】并查集模板与练习
    Kaggle-房价预测
    【pytorch】pytorch-backward()的理解
    【pytorch】pytorch-LSTM
    【计算机网络】数据链路层总结
    【Code】numpy、pytorch实现全连接神经网络
    【MT】牛津的MT教程
    【计算机网络】物理层基础知识
  • 原文地址:https://www.cnblogs.com/liuzhengdao/p/1306286.html
Copyright © 2020-2023  润新知