Taylohtio/AlertManager/SPSolutions.SharePoint.Aler.../SPSolutions.SharePoint/SPSolutions.SharePoint.WebC.../SPScriptControlBase.cs

19 lines
418 B
C#

using System;
using System.Web.UI.WebControls;
namespace SPSolutions.SharePoint.WebControls
{
public class SPScriptControlBase : WebControl
{
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
SPScriptManager current = SPScriptManager.GetCurrent(this.Page);
if (current != null)
{
current.RegisterCssReference(this);
current.RegisterScriptReferences(this);
}
}
}
}