//获取内部 ScrollViewer方法public static T
FindVisualChild(DependencyObject obj) where T : DependencyObject { if (obj !=
null) { for (int i = 0; i (child); ...
分类:
其他好文 时间:
2014-05-17 13:09:33
阅读次数:
275
(1)查看用户的连接状况select username,sid,serial# from
v$session------------------------------------------如下结果:username sid
serial#-----------------------------...
分类:
其他好文 时间:
2014-05-16 23:44:56
阅读次数:
367
本文转自:http://blog.bossma.cn/asp_net_mvc/asp-net-mvc-htmlhelper-calendar-datetime-select/这里我们扩展HtmlHelper,就像它包含在ASP.NET
MVC中一样,扩展方法使我们能为已有的类添加方法。这里使用了一个...
分类:
Web程序 时间:
2014-05-16 19:56:37
阅读次数:
389
Givennnon-negative integersa1,a2, ...,an, where
each represents a point at coordinate (i,ai).nvertical lines are drawn such that
the two endpoints of ...
分类:
其他好文 时间:
2014-05-16 19:42:17
阅读次数:
286
create table OA_WF_NODETEMP as select * from
oa_wf_node where 1=2
分类:
其他好文 时间:
2014-05-16 18:55:53
阅读次数:
202
检查AWR当前设置:SQL> select * from
dba_hist_wr_control; DBID SNAP_INTERVAL RETENTION TOPNSQL----------
------------------------- ------------------------- -...
分类:
其他好文 时间:
2014-05-14 08:45:07
阅读次数:
374
题目名字有点搓,做题时没做出来,学长他们做出了,发现跟网上题解的思路没太大区别,网上所有题解的分析也都转自同一个地方,看样子这道题目不是那么好想的,没办法按照解析画了半天,计算器按了半天,理解了,自己敲出来了,觉得值得留念,打算再刷几道这样的
hdu 2879 HeHe
题意:In the equation X^2≡X(mod N) where x∈[0,N-1], we...
分类:
其他好文 时间:
2014-05-13 15:59:20
阅读次数:
357
一、点击复制文本框内容的代码:
function jsCopy(){
var e=document.getElementById("content");//对象是content
e.select(); //选择对象
document.execCommand("Copy"); //执行浏览器复制命令
alert("已复制好,可贴粘。");
...
分类:
Web程序 时间:
2014-05-13 14:40:16
阅读次数:
309
1 查询表结构
语法:desc 表
2 查询所有列
语法:select * from 表名
3 查询指定列
语法:select 列名1,列名 from 表名
4 取消重复行
语法:select distinct 列名1,列名2 from 表名
5 使用列别名,并且加...
分类:
其他好文 时间:
2014-05-13 13:31:41
阅读次数:
240