随风而行

^o^ 格言:相信没有做不到的事情,只有想不到的事情.
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2009年2月23日

摘要: .aspx .cs private void Localize()//从语言文件中获取数据 { Page.Title = this.GetString("T0190");// "物料管控系统身份验证"; lblUserCode.Text = this.GetString("T0164") ; } protected void ... 阅读全文

posted @ 2009-02-23 16:07 随风而行 阅读(231) 评论(0) 推荐(0) 编辑

摘要: .aspx ... 阅读全文

posted @ 2009-02-23 14:23 随风而行 阅读(175) 评论(0) 推荐(0) 编辑

摘要: private void operateFlatFile() { string path; FileStream fs; byte[] _read, _write; int start, end; start = 0; end = 50; // read path = Server.MapPath("http://www.cnbl... 阅读全文

posted @ 2009-02-23 14:11 随风而行 阅读(113) 评论(0) 推荐(0) 编辑

摘要: 一、测试代码: 1、aspx: Untitled Page 2、cs: protected void btn_html_serverclick(object sender, EventArgs e) { System.Threadin... 阅读全文

posted @ 2009-02-23 14:04 随风而行 阅读(197) 评论(0) 推荐(0) 编辑

摘要: 一个普通的aspx页面,我们可以很容易地为其设置设置defaultbutton和defaultfocus,具体如下: .aspx: .cs: protected void Page_Load(object sender, EventArgs e... 阅读全文

posted @ 2009-02-23 12:05 随风而行 阅读(183) 评论(1) 推荐(0) 编辑

摘要: -- sql server select id from ( select '1' as id union all select '2' union all select '3' union all select '4' union all select '5' ) t order by case when charindex(id, '3, 2, 4, 1') = 0 then... 阅读全文

posted @ 2009-02-23 12:01 随风而行 阅读(128) 评论(0) 推荐(0) 编辑

摘要: 一、创建时设置序列的最大值与最小值 create sequence seq_test minvalue 1 maxvalue 999999999999999999999999999 start with 1 increment by 1 cache 20; current sequence value: select seqpart.currval from dual; next seq... 阅读全文

posted @ 2009-02-23 11:53 随风而行 阅读(252) 评论(0) 推荐(0) 编辑

摘要: 一、基本概念1. 什么是过程?2. 什么是过程模型?3. 过程与过程模型的区别是什么?4. CMMI是一个过程还是一个过程模型?为什么 二、关于过程的定义•过程-是指为达到一定目标的活动的偏序集(全世界过程改进第三届年会上提出)•过程–是指为了给定目的而执行的一系列步骤(IEEE)•过程–是指将人员、材料、能源、设备和规程,设计成以产生特定最终结果的工作活动的逻辑组织(Gabriel A. Pall Quality Process Management. Englewood Cliffs, N.J.: Prentice-Hall, 1987.)•过程–是指可以用以实现模型中多个实践的一系列活动 阅读全文

posted @ 2009-02-23 11:46 随风而行 阅读(199) 评论(0) 推荐(0) 编辑

摘要: sqlplus数据显示格式很不方便:n字段名称显示为n行,数据也是如此,并且查询结果每3条数据为一段。如何设置其格式,使其显示结果类似sqlserver的查询分析器那样的格式,象一个数据表的格式。sql>set linesize 99999sql>set heading off 阅读全文

posted @ 2009-02-23 11:37 随风而行 阅读(270) 评论(0) 推荐(0) 编辑

摘要: 假设当前执行命令为:select * from tab; (a)ppend 添加文本到缓冲区当前行尾 a order by tname 结果:select * from tab order by tname; (注:a后面跟2个空格) (c)hange/old/new 在当前行用新的文本替换旧的文本 c/*/tname 结果:select tname from tab; (c)hange/text 从当前行删除文本 c/tab 结果:select tname from ; del 删除当前行 del n 删除第n行 (i)nput 文本 在当前行之后添加一行... 阅读全文

posted @ 2009-02-23 11:36 随风而行 阅读(237) 评论(0) 推荐(0) 编辑

摘要: 有以下两种方法: 方法1: 方法2: if (document.layers) { var maxWidth=screen.availWidth-10; var maxHeight=screen.availHeight-20; } else ... 阅读全文

posted @ 2009-02-23 11:24 随风而行 阅读(246) 评论(0) 推荐(0) 编辑

摘要: using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.W... 阅读全文

posted @ 2009-02-23 11:07 随风而行 阅读(331) 评论(0) 推荐(0) 编辑

摘要: public void wirte() { try { StreamReader sr = new StreamReader("c:\\Variables.txt"); string content = sr.ReadToEnd(); sr.Close(); St... 阅读全文

posted @ 2009-02-23 10:55 随风而行 阅读(1124) 评论(2) 推荐(0) 编辑