摘要: 获取可执行文件的路径System.Windows.Forms.Application.ExecutablePath 如果有特殊符号, 以?的形式显示解决办法:用 System.Reflection.Assembly.GetEntryAssembly().Location 代替 阅读全文
posted @ 2009-09-22 16:49 ms 阅读(3350) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> var oEditer; function check(){ var content = oEditer.GetXHTML(true); //content就是编辑器的内容的html源码了 if( content==""){ alert("请输入内容!"); return false; } } function FCKed... 阅读全文
posted @ 2009-08-04 15:51 ms 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 1.用table布局,禁止使用div 2.样式全部写在本页面内,禁止引用外部样式文件 3.所有路径都写成绝对路径,写死,如http://www.xxx.com/xxx.jpg 4.尽量保证页面布局无格式错误,禁止多td少tr的现象 5.发送时,只发送body之间的内容或者部分内容6.如果发件人是hotmail或者gmail,禁止在发件内容中使用文本域Texteara, 否则收件人收到邮件之后,回... 阅读全文
posted @ 2009-03-24 17:02 ms 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 读取excel单元格数据,当单元格数据长度大于255时,只能读取到前面长度为255字符,后面的字符会自动被截掉这个是EXCEL驱动问题,需要改注册表的在HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Excel中TypeGuessRows的数据是25,所以我的程序在读取前25行数据不存在数据截断的问题.如果将他设置为0,所有问题都不存在了... 阅读全文
posted @ 2008-10-27 08:57 ms 阅读(2192) 评论(2) 推荐(0) 编辑
摘要: 错误描述 Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm.... 阅读全文
posted @ 2008-07-29 10:32 ms 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 错误信息:您未被授权查看该页 您不具备使用所提供的凭据查看该目录或页的权限,因为 Web 浏览器正在发送 Web 服务器未配置接受的 WWW-Authenticate 报头字段。 -------------------------------------------------------------------------------- 请尝试以下操作: 如果您认为自己应该能够查看该目录或页面,... 阅读全文
posted @ 2008-07-21 11:28 ms 阅读(2277) 评论(1) 推荐(0) 编辑
摘要: 错误描述:A Graphics object cannot be created from an image that has an indexed pixel解决思路:做一个同样尺寸的bitmap,将“indexed pixel format”格式的图片复制过来,变为一个非“indexed pixel format”的图片实现代码:protecte... 阅读全文
posted @ 2008-07-21 11:25 ms 阅读(1041) 评论(0) 推荐(0) 编辑
摘要: 调用C#程序中存储过程时,抛出奇怪的异常 String[3]: the Size property has an invalid size of 0.出现该问题的存储过程有一个特征,就是存在 Varchar 或者 Nvarchar 类型的 out 参数调用时对该参数的定义类似于SqlParameter para = new SqlParameter("@paraname", DBType.Stri... 阅读全文
posted @ 2008-06-05 09:50 ms 阅读(927) 评论(0) 推荐(0) 编辑
摘要: 解决方法:查找到 D:\Program Files\Mozilla Firefox\greprefs\all.js 就是火狐的安装路径在文件的最后面加入以下代码:pref("network.security.ports.banned.override", "101");替换上面的 101 就OK了101 是在 IIS 上配置项目的端口 阅读全文
posted @ 2008-05-20 12:12 ms 阅读(1318) 评论(0) 推荐(0) 编辑
摘要: 两个解决方法:1) 打开项目属性,选择调试选项卡,将“启用非托管代码调试”一项钩上。2) 打开项目属性,选择调试选项卡,将“启用Visual Studio宿主进程“一项钩掉。原因是Terminal Services 被禁用,启动服务即可解决问题。还有其它原因:1.没有设置启动项目2.项目要设置Debug类型 阅读全文
posted @ 2008-05-07 23:12 ms 阅读(737) 评论(0) 推荐(0) 编辑