ado的模糊搜索。用什么显示出搜索到的记录比较好。还有高亮显示。有点晕。
......
strSQL = String.Format( "SELECT * FROM Client_qry_item_detail WHERE clie_chname like '%{0}% 'or AendADD like '%{1}% ' ", key, key) '暂时列举2个。
objCmd = New Data.OleDb.OleDbCommand(strSQL, objCon)
itemDR = objCmd.ExecuteReader() ' 获取DataReader对象
itemDR.Read()
Dim setcount As Integer = itemDR.HasRows '显示数据
If setcount = 0 Then
Response.Write( "对不起,没有查询到相关记录! ")
Else
Do '显示出查询的结果
Response.Write( " <table width=618 height=429 border=1 cellspacing=0> ")
Response.Write( " <tr> ")
Response.Write( " <td> ")
Response.Write( "客户名 ")
Response.Write( " </td> ")
Response.Write( " <td> ")
Response.Write(itemDR.Item( "clie_chname "))
Response.Write( " </td> ")
Response.Write( " </tr> ")
......
Response.Write( " </table> ")
Response.Write( " <br/> ")
Loop While itemDR.Read()
End If
这样很难控制。有人说用datagrid。我不知道如何绑定搜到的结果。
我之所以要用table,因为要做一个按钮,还要根据搜到的记录。点击按钮,传递记录中的几个字段,比如clie_chname,aendadd到下一个页面。(每个table绑定一个按钮)
------解决方案--------------------Repeater,DataView,DataList都可以做,你可以去找找相关资料看看
高亮显示:
1.用String.Replace( "关键字 ", " <span color=red> 关键字 </span> ")
2.用JS:
1、单个关键字加亮
代码:
<div id= "txt ">
用JS让文章内容指定的关键字加亮
是这样的..
现在有这些关键字:美容,生活,购物
当在文章里头出现这些关键字,就把它加亮显示..
文章是生成静态页面的,而这些关键字是能随时更新的,所以我想用JS来实现...
</div>
<script language= "JavaScript ">
document.getElementById( "txt ").innerHTML = document.getElementById( "txt ")..innerHTML.replace(/文章/gi, " <font color=red> 文章 </font> ");
</script>
2、多个关键字加亮
代码:
<div id= "txt ">
用JS让文章内容指定的关键字加亮
是这样的..现在有这些关键字:美容,生活,购物
当在文章里头出现这些关键字,就把它加亮显示..
文章是生成静态页面的,而这些关键字是能随时更新的,所以我想用JS来实现...
</div>
<script language= "JavaScript ">
document.getElementById( "txt ").innerHTML = document.getElementById( "txt ").innerHTML.replace(/(文章)|(关键字)|(功能)/gi, " <font color=red> $1$2$3 </font> ");
</script>
------解决方案--------------------//用gridview直接绑定即可.
//没调试.
DataSet ds = new DataSet();
DataAdapter da = new DataAdapter(con,sql);
ds.File(ds, "TableName ");
DataGridView dgv = new DataGridView();
dgv.DataSource = ds.Tables[ "TableName "];
------解决方案--------------------有必要传那么多参数