1.感受一下深搜代码 1 void Set_01(int k){ 2 if(k==MAXN){ 3
Print_ans(k); 4 return; 5 } 6 for(int i=0;i<2;i++){ 7 ans[k]=i; ...
分类:
其他好文 时间:
2014-06-29 15:12:54
阅读次数:
197
比如,有这样一个类: public class User { public string
Name { get; set; } } 当在强类型视图页,显示属性Name对应的input元素,并想添加一个title属性和对应的值,如图: □ 思路
→自定义TooltipAttribute,可以打到Nam...
分类:
Web程序 时间:
2014-06-29 13:51:01
阅读次数:
444
1.正则使用 比 LIKE 会牺牲很多的系统资源 尽量不要用 正则的语法和JS PHP 差不多
select * from t1 where email REGEXP "@163[,.]com$"; select * from t1 where email
like "%@163.com" o...
分类:
数据库 时间:
2014-06-07 06:05:12
阅读次数:
280
\setlength{\abovedisplayshortskip}{0cm}
公式和文本之间的间距\setlength{\belowdisplayshortskip}{0cm}\setlength{\abovedisplayskip}{0cm}\setlength{\belowdisplaysk....
分类:
其他好文 时间:
2014-06-07 05:37:59
阅读次数:
169
C:\Documents and Settings\Administrator>sqlplus
/nologSQL*Plus: Release 10.2.0.1.0 - Production on 星期一 7月 5 09:50:36
2010Copyright (c) 1982, 2005, Ora...
分类:
数据库 时间:
2014-06-07 05:20:01
阅读次数:
334
复制npswf32.dll 到
C:\WINDOWS\system32\Macromed\Flash\ 代码加入: //! [1]
QNetworkProxyFactory::setUseSystemConfiguration(true);// flash support
QWebSettings:...
分类:
Web程序 时间:
2014-05-28 19:11:55
阅读次数:
391
实现的效果为:在编辑视图中,对DateTime类型的属性,显示jQuery
UI的datepicker。效果如下: Student.cs public class Student { public int Id { get; set;
} public string Name { get; set;...
class Solution { public: vector
spiralOrder(vector > &matrix) { vector ret; int cols = 0; ...
分类:
其他好文 时间:
2014-05-28 14:38:02
阅读次数:
236
class Solution { public: vector >
generateMatrix(int n) { vector > matrix; if (n (n, 0)); }...
分类:
其他好文 时间:
2014-05-28 09:42:14
阅读次数:
233
借用他人的经验客户Oracle服务器进入PL/SQL
Developer时报ora-01033:oracle initializationg or shutdown in progress
错误提示,应用系统无法连接Oracle服务。经远程指导解决问题。过程如下:1、进入CMD,执行set ORAC...
分类:
数据库 时间:
2014-05-28 09:31:27
阅读次数:
403