摘要: 1.两个不同数据库对应字段相应操作//操作模版:insert into data2.table2(字段1,字段2,字段) select 字段j,字段k,字段m from data1.table1举例:insert into Hospitals.dbo.Deparments(DepartmentNam... 阅读全文
posted @ 2014-07-24 07:27 阳光代码 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 1.以屏幕可用宽和高的百分比来定义弹出框的宽和高var trueWidth = $(top.window).width() * 0.9;var trueHeight = $(top.window).height() * 0.9;2.光标离开时验证是否数字//jsfunction CheckIsNan... 阅读全文
posted @ 2014-07-24 07:23 阳光代码 阅读(390) 评论(0) 推荐(0) 编辑
摘要: function procossWithSeletedData(func) { var rowData = $("#tbGrid").datagrid("getSelected"); if (rowData) { ... 阅读全文
posted @ 2014-07-24 07:11 阳光代码 阅读(698) 评论(0) 推荐(0) 编辑
摘要: declare @c varchar(50)set @c='572a3d51-ef7a-459e-a5cd-ebf0fca51e8b' --能查出来呀 你试试,我试一下,好像可以啦谢谢 declare @a nvarchar(50) select @a=Name from DeviceName w... 阅读全文
posted @ 2014-07-23 17:31 阳光代码 阅读(333) 评论(0) 推荐(0) 编辑
摘要: --------------------------------------第一种:利用动软代码生成器生成的分页------------------------------------//新建一个一般处理程序 pageIndex = int.Parse(HttpContext.... 阅读全文
posted @ 2014-07-23 07:30 阳光代码 阅读(4245) 评论(0) 推荐(0) 编辑
摘要: 第一:是把生成的Json格式的时间转换,注意要看清楚时间的格式 function (cellval) { var date = new Date(parseInt(cellval.replace("/Date(", "").replace(")/"... 阅读全文
posted @ 2014-07-23 07:22 阳光代码 阅读(896) 评论(0) 推荐(0) 编辑
摘要: 第一步:需要引用org.in2bits.MyXls程序集到使用页面第二步:前台代码第三步:在aspx文件的后台写按钮的点击事件protected void LeadingOut_Click(object sender, EventArgs e) {DataSet ds = consum... 阅读全文
posted @ 2014-07-23 07:05 阳光代码 阅读(1425) 评论(0) 推荐(1) 编辑