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));
    }
    }
    }
    }
    
  • 相关阅读:
    js概念理解
    web性能瓶颈
    http协议
    jquery插件开发
    Razor(cshtml)
    从局域网内的其他Linux主机下载文件
    Java多线程学习笔记
    java中String s="abc"及String s=new String("abc")详解
    Object中toString方法
    DAO层,Service层,Controller层、View层、entity层
  • 原文地址:https://www.cnblogs.com/springyangwc/p/1981408.html
Copyright © 2011-2022 走看看