摘要: static bool IsNumeric(string str) { if (str==null || str.Length==0) return false; foreach(char c in str) { if (!Char.IsNumber(c)) { return false; } } return true;... 阅读全文
posted @ 2006-09-26 13:06 MSDI 阅读(292) 评论(1) 推荐(0)
摘要: 前台代码: smallImg 要上传的图片 ... 阅读全文
posted @ 2006-09-26 09:56 MSDI 阅读(283) 评论(0) 推荐(0)
摘要: using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Web;using System.Web.SessionState;using System.Web.UI;using System.Web.UI.WebContr... 阅读全文
posted @ 2006-09-26 09:21 MSDI 阅读(253) 评论(0) 推荐(0)
摘要: 访问网络资源提示网络不存在或者尚未启动 解决方案:能上网,能PING通其他电脑,但是通过网上邻居和IP不能访问其他电脑上的资源。 处理办法:找到与自己系统相同的系统,进入SYSTEM32/DRIVERS文件夹,找到RDBSS.SYS和MRXSMB.SYS 文件。拷备到自己系统的对应位置就可以了。启动WORKSTATION服务,net start browser 阅读全文
posted @ 2006-09-26 08:26 MSDI 阅读(1120) 评论(0) 推荐(0)