19 lines
411 B
C#
19 lines
411 B
C#
using System;
|
|
using System.Web.UI;
|
|
namespace SPSolutions.SharePoint.WebControls
|
|
{
|
|
public class SPScriptUserControlBase : UserControl
|
|
{
|
|
protected override void OnPreRender(EventArgs e)
|
|
{
|
|
base.OnPreRender(e);
|
|
SPScriptManager current = SPScriptManager.GetCurrent(this.Page);
|
|
if (current != null)
|
|
{
|
|
current.RegisterCssReference(this);
|
|
current.RegisterScriptReferences(this);
|
|
}
|
|
}
|
|
}
|
|
}
|