ms_dos

  博客园  :: 首页  :: 新随笔  ::  :: 订阅 订阅  :: 管理

2007年7月9日

摘要: http://blog.csdn.net/21aspnet/archive/2007/04/01/1548696.aspx 阅读全文
posted @ 2007-07-09 21:02 ms_dos 阅读(171) 评论(0) 推荐(0) 编辑

摘要: 建立一个WEB工程,添加新项->HTML页面,命名为ProgressBar.htm,内容如下: 无标题页 后台代码,Default.aspx.cs: using System;using System.Data;using System.Configuration;using System.Web;using Sys... 阅读全文
posted @ 2007-07-09 18:36 ms_dos 阅读(486) 评论(0) 推荐(0) 编辑

摘要: 在安装Office2003以后,有一个ActiveX控件被安装到了系统中,这个控件位于“Program Files\Microsoft Office\OFFICE11\owssupp.dll”。通过这个控件,客户端页面上的JavaScript就可以激活本地的Office软件,来实现打开、编辑Office文档。(另,Office XP应该就已经包含这个ActiveX控件了。) 首先,用Script创... 阅读全文
posted @ 2007-07-09 18:35 ms_dos 阅读(327) 评论(0) 推荐(0) 编辑

摘要: cs:写在Page_Load 里面Button1.Attributes.Add("onclick", "return fun(" + TextBox1.ClientID + "," + TextBox2.ClientID + ");");aspx: 阅读全文
posted @ 2007-07-09 18:33 ms_dos 阅读(498) 评论(0) 推荐(0) 编辑

摘要: private bool isNumeric(string str){ if (str == null || str.Length == 0) return false; System.Text.ASCIIEncoding ascii = new System.Text.ASCIIEncoding(); byte[] byte... 阅读全文
posted @ 2007-07-09 18:32 ms_dos 阅读(426) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2007-07-09 18:31 ms_dos 阅读(311) 评论(0) 推荐(0) 编辑