Hi,
The best way it to load your script from code, you should do it in the OnPreRender event, this will make sure it comes in after the main jQuery files. Here is an example:
private void SetupMainScript()
{
Page.ClientScript.RegisterClientScriptBlock(typeof(Page),
"jeasyslider", "\n<script src=\""
+ Page.ResolveUrl("~/ClientScript/jqmojo/easySlider1.7.js" + "\" type=\"text/javascript\" ></script>");
}
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
SetupMainScript();
}
You should sign up for the mojoPortal user group meeting tomorrow night, I will be presenting on how to integrate jQuery plugins.
Hope it helps,
Joe