摘要:
GridView1.Attributes.Add("style", "white-space:nowrap;word-wrap:normal "); if (!IsPostBack) { TextBox_rq1.Attributes.Add("onfocus", "WdatePicker()"); 阅读全文
posted @ 2016-07-10 22:39
shanwater
阅读(282)
评论(0)
推荐(0)
摘要:
1、撤销修改 (1)git checkout -- a.txt 修改了a.txt,但没有add,还没有添加到暂存区,状态为unstage,从版本区直接回复到工作区。 (2)git reset HEAD a.txt 修改了a.txt且add了,添加到了index区,状态为stage,必须先使用git reset HEAD a.txt,使状态为unstage,然后使用git ... 阅读全文
posted @ 2016-07-10 08:32
shanwater
阅读(189)
评论(0)
推荐(0)