看代码:

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));
}
}
}
}

相关文章:

  • 2021-09-16
  • 2021-11-11
  • 2022-01-02
  • 2021-06-17
  • 2021-08-09
  • 2022-01-25
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-04
  • 2021-06-10
  • 2021-07-04
  • 2022-02-12
  • 2021-12-22
  • 2022-12-23
相关资源
相似解决方案