admin/label/KS.Label.SQL.aspx
找到
function checkdatasource()
{
jQuery.get('KS.Label.SQL.aspx',{action:'CheckDataSource',lst:jQuery('#<%=this.LabelDataSource.ClientID %>>option:selected').val(),cstr:jQuery('#<%=this.ConnStr.ClientID %>').val()},function(s){
if(s=='true')
{
KesionJS.AlertByTime(2,'恭喜,标签数据源连接测试通过!',200);
}
else
{
KesionJS.AlertByTime(1,'连接出错,请检查连接字符串!',200);
}
return false;
});
}
改成
function checkdatasource()
{
jQuery.get('KS.Label.SQL.aspx',{action:'CheckDataSource',lst:jQuery('#<%=this.LabelDataSource.ClientID %>>option:selected').val(),cstr:jQuery('#<%=this.ConnStr.ClientID %>').val()},function(s){
if(s=='true')
{
KesionJS.AlertByTime(1,'恭喜,标签数据源连接测试通过!',200);
}
else
{
KesionJS.AlertByTime(2,'连接出错,请检查连接字符串!',200);
}
return false;
});
}