卡片召唤师
精华
|
战斗力 鹅
|
回帖 0
注册时间 2012-2-26
|
File:index.htmMethod:query.table(columns,*where,*order,*top)在与 SQL Server 建立连接时出现与网络相关的或特定于实例的错误。未找到或无法访问服务器。请验证实例名称是否正确并且 SQL Server 已配置为允许远程连接。 (provider: SQL Network Interfaces, error: 26 - 定位指定的服务器/实例时出错)数据库执行错误
xmls/index.xmls
...
$sub Popups(){
@code=[#<div class="mcont-cont">
<div class="new-top">
<p class="new-tit">{*Title}</p>
<span class="new-sub">{*CreateDate}</span>
</div>
<div class="new-tcon">
<a class="new-tct">{*Body}
</a>
<p class="textR">ALTER ONLINE SHOP阿尔塔在线</p>
</div>
</div>#];
@TableContent=$query(content,content);
@News=@TableContent.table(*,['Status>0 and AreaId=1 and {*TagIds like ,3,}'],,1);
@NewsView=@News.format(@code);
$return(@NewsView);
} |
|