02 2011 档案

摘要:.net的标准化查询确实是个好东西,生了很多事。使用like的时候语句应该这样写:“Select * From table Where field like ’%‘+@field+’%‘”;而不是 “Select * From table Where field like %@field%”不知道具体原因,有知道的可以告知,谢谢。 阅读全文
posted @ 2011-02-23 15:12 acles 阅读(626) 评论(2) 推荐(0)
摘要:div显示上下左右滚动条<div style="width:260px;height:120px; overflow:scroll; border:1px solid;"> 这里是你要显示的内容 </div>div显示上下滚动条的css代码<div style="width:260px;height:120px; overflow-y:scroll; border:1px solid;"> 这里是你要显示的内容 </div>div显示左右滚动条的css代码 <div style="width:260px;height:120px; over 阅读全文
posted @ 2011-02-16 17:15 acles 阅读(96236) 评论(0) 推荐(1)