zoukankan      html  css  js  c++  java
  • Sharepoint 提供JavaScript的Web Part

    看代码:

    using System;
    using System.Runtime.InteropServices;
    using System.Web.UI;
    using System.Web.UI.WebControls.WebParts;
    using System.Xml.Serialization;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.WebControls;
    using Microsoft.SharePoint.WebPartPages;
    namespace LoisAndClark.Ajax
    {
    [Guid(“be6ec8e3-2706-4f52-bdf9-f6eb18fc65c0”)]
    public class AjaxClient : System.Web.UI.WebControls.WebParts.WebPart
    {
    public AjaxClient()
    {
    PreRender += new EventHandler(AjaxClient_PreRender);
    }
    void AjaxClient_PreRender(object sender, EventArgs e)
    {
    if (!Page.ClientScript.IsClientScriptIncludeRegistered (“MyKey1”))
    {
    Page.ClientScript.RegisterClientScriptInclude(“MyKey1”, “/wpresources/customlib.js”);
    }
    if (!Page.ClientScript.IsClientScriptBlockRegistered(“MyKey2”))
    {
    Page.ClientScript.RegisterClientScriptBlock(typeof(string), “MyKey2”, “alert(‘test’);”, true);
    }
    }
    protected override void CreateChildControls()
    {
    try
    {
    // ... do stuff...
    }
    catch (Exception err)
    {
    Controls.Add(new LiteralControl(err.Message));
    }
    }
    }
    }
    
  • 相关阅读:
    Tomcat虚拟目录的映射方式
    Linux常用命令
    java断点调试
    破解MyEclipse
    JS判断浏览器
    css3 box-sizing详解。
    this-使用call . apply
    this-内部函数
    this-对象方法调用
    this-纯函数
  • 原文地址:https://www.cnblogs.com/springyangwc/p/1981408.html
Copyright © 2011-2022 走看看