合抱之木,生于毫末。九层之台,起于累土。千里之行,始于足下又一句熟悉意思而又是来自于《道德经》的话
分类:
其他好文 时间:
2014-07-22 22:58:36
阅读次数:
274
public Point TranslatePoint( Point point, UIElement
relativeTo)private void OnMouseLeftButtonDown(object sender,
MouseButtonEventArgs e){ // Retrieve ...
分类:
其他好文 时间:
2014-05-10 08:09:34
阅读次数:
225
php函数名在识别时不会区分大小写,意思就是写两个相同的名字,但是大小写不同,php会认为这是同一个方法,在执行时就会报不能声明同一个函数的错
即:function re(){}=function rE(){}在php中方法中的变量值在外层是调用不到的,例如: $a=12; function...
分类:
Web程序 时间:
2014-05-10 06:24:09
阅读次数:
396
源码如下:
#region 保存纵断面截图
private void button_save_Click(object sender , EventArgs e)
{
SaveFileDialog saveImageDialog = new SaveFileDialog();
saveImageDialo...
">
cs文件:
protected void Page_Load(object sender, EventArgs e)
...
分类:
其他好文 时间:
2014-05-10 03:30:25
阅读次数:
211
链接:http://soj.me/show_problem.php?pid=1735&cid=
Description
Let me introduce an easy method of encryption to you.
Suppose there’re N bytes (1 byte = 8 bits) data that are to be encrypted and ...
分类:
其他好文 时间:
2014-05-09 22:46:01
阅读次数:
498
获取api的时候,获取回来的特殊对象
$eBayTime = $responseDoc->getElementsByTagName('Timestamp');
object(DOMNodeList) $eBayTime
这种对象,取长度 $eBayTime->length
取值 $eBayTime->item(0)
取值的对象是 object(DOMElement) $eBay...
分类:
其他好文 时间:
2014-05-09 22:07:07
阅读次数:
288
在ASP.NET使用javascript的一点小技巧
我们在进行ASP.NET开发时,经常会用到一些javascript脚本,比如:
private void Button1_Click(object sender, System.EventArgs e)
{
Response.Write( "alert('OK');") ;
}
经常是重复的书写这些脚本,如果我们能做成一个相...
分类:
编程语言 时间:
2014-05-09 21:12:11
阅读次数:
268
错误原因:
如API中所述
API:
A table of data representing a database result set, which is usually generated by executing a statement that queries the database. A
ResultSet object maintains a cursor pointi...
分类:
数据库 时间:
2014-05-09 21:00:43
阅读次数:
423
在 mkfs.ext4 /dev/sda2 格式化硬盘空间时,可能出现这样的错误。
had this situation at office where I was told to re-partition an already existing partition. The situation was to get the below schema
/dev/sdb1 1 3040 24...
分类:
其他好文 时间:
2014-05-09 20:49:25
阅读次数:
343