## JS
```
var info = {
init:function(){
......
},
bindEvent:function(){
hongbo.associate({
elem: "government-basewell-association"
, array: { path: "government/station/detail/OrgSearch.txt" }
//找到编译SQL语句的路径
, callback: function (results) {
$('#government-basewell-association').val(results.Caption)
}
});
},
reder:function(){
......
}
}
```
## SQL
```
select Caption,Caption as Value
from Slops.dbo.O_Org
where Caption is not null and Caption like '%' + @Caption + '%'
```