﻿
function addTemplateToFavor(sTemplateID,sPortalID,sUserID)
{
  template.AddTemplateToFavor(sTemplateID,sPortalID,sUserID,AfterAjax);
}

//***Ajax客户端异步方法*******************************************
function AfterAjax(response)
{
	if(response.error != null)
	{
		alert(response.error);
	}
	else
	{
		alert("已添加到我的收藏");
	}
}
