posted @ 2009-04-20 16:22 LonelyStar 阅读(144) 评论(0) 推荐(0) 编辑
摘要:
/Files/lonelystar/Reflector for NET 反编译.zip 阅读全文
摘要:
http://www.newasp.net/tech/data/2492.html数据库中时间日期往往是一个很重要的数据。各个计算机上的时间往往不同,为了在数据库中插入统一的时间,如果是取当前时刻,最好直接从数据库服务器读取。比如有一个表名为tablename的表格,其中columnname字段是当前记录插入时的当前时间,则该插入语句应写为:insert into table name (colu... 阅读全文
posted @ 2009-03-11 10:59 LonelyStar 阅读(366) 评论(0) 推荐(0) 编辑
摘要:
如果使用div的话,默认是有一个最小高度的,如果设置的高度小于这个最小高度的话,会不起作用的,可以设置overflow:hidden;<div style="background-color:#FF9000; width:10px; height:10px; overflow:hidden;"></div>这个例子是一个橙色的方块 阅读全文
posted @ 2009-03-10 17:41 LonelyStar 阅读(225) 评论(0) 推荐(0) 编辑
摘要:
<div style="width:750px; border:solid 1px blue; position:relative;"> <div style="float:left; border:solid 1px red; "> <img src="" style="width:400px; height:100px;" /></div> &l... 阅读全文
posted @ 2008-11-28 10:37 LonelyStar 阅读(4173) 评论(0) 推荐(0) 编辑
摘要:
<asp:TextBox ID="txtName" runat="server" ></asp:TextBox><script type="text/javascript"> document.getElementById("<%=txtName.ClientID%>").focus(); </script> 放到页面的最下面就行 阅读全文
posted @ 2008-11-12 13:17 LonelyStar 阅读(5928) 评论(2) 推荐(0) 编辑
摘要:
.net用新的日期方法,就是使用Int64来代替Double类型储存时间。但仍然提供了转换为老类型日期的方法,就是DataTime的ToOADate和FormOADate方法。你在MSDN中输入这些关键字,就能很快找到使用方法。[代码] 阅读全文
posted @ 2008-10-17 08:53 LonelyStar 阅读(3721) 评论(0) 推荐(0) 编辑
摘要:
绑定数据源Business.Request[] list = Business.Request.FindAll(orderField, ascending, index); grdRequest.DataSource = list; grdRequest.DataBind();直接绑定属性:[代码]ImplementorName 是Business.Request的属性绑定属性的属性[代码]Man... 阅读全文
posted @ 2008-10-16 13:03 LonelyStar 阅读(354) 评论(0) 推荐(0) 编辑
摘要:
在用水晶报表的柱状图的时候,有些时候横坐标是日期,如果是正常显示的话,数据多的时候就会重叠在一起,这个时候就需要调节坐标数值的显示角度,步骤如下:1.在设计视图中,任意选中一个横坐标的值,然后鼠标右键->Format Axis Label2.有一个选项是Rotation,下面的数值就是需要旋转的角度 阅读全文
posted @ 2008-09-04 16:30 LonelyStar 阅读(948) 评论(0) 推荐(0) 编辑