- 博客(3)
- 资源 (13)
- 收藏
- 关注
原创 SQL Server 游标的使用
declare @id intdeclare #tb cursor for select Id from a where Flag=1open #tbfetch next from #tb into @idwhile @@fetch_status =0beginselect Name from a where Id=@idfetch next from #tb into
2013-08-19 13:20:32
511
原创 Iframe自适应大小
Iframe自适应大小1、不带边框的iframe因为能和网页无缝的结合从而使在不刷新页面的情况下只更新页面的部分数据成为可能。但中iframe的大小却不能像层那样可以“伸缩自如”,所以带来了使用上的麻烦,给iframe设置高度的时候多了也不好,少了更是不行。现在来描述一种iframe动态调整高度的方法,主要是以下JS函数:Function SetWinHeight(obj){
2012-08-06 09:51:05
921
iframe自适应大小.docx
2012-08-06
Entity Framework学习
2011-12-31
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人