03 2005 档案

摘要:背景 在我参与的一个项目中,这个项目是基本BS结构的WEB应用系统,经常会出现在Session丢失的情况,即使用户在操作的过程中也会出现超时现象。 原因 我们的系统要运行在负载平衡的 Web 场环境中,而系统配置文件web.config中的Session状态却设置为InProc(即在本地存储会话状态),导至在用户访问量大时,Session常... 阅读全文
posted @ 2005-03-18 10:37 PointNet 阅读(7717) 评论(0) 推荐(1) 编辑
摘要:ÐÐ ÄúË«»÷ÁËµÚ Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load If Not IsPostBack Th... 阅读全文
posted @ 2005-03-15 15:43 PointNet 阅读(1238) 评论(0) 推荐(0) 编辑
摘要:比较一般常用的方法是根据选择不同触发不同的按钮的点击事件 if(confirm('您确定要删除该方案的所有信息吗?')) { btn1.click(); } else { btn2.click(); } 加入一个隐藏控件 在.VB中根据 隐藏控件的值来 判断 If hidden1.Value = "Yes" Then 。。。。 Else ... 阅读全文
posted @ 2005-03-14 12:29 PointNet 阅读(3609) 评论(0) 推荐(0) 编辑
摘要:http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/objects.asp 阅读全文
posted @ 2005-03-10 10:02 PointNet 阅读(1767) 评论(0) 推荐(0) 编辑
摘要:Q:新建项目时出错:Visual Studio .NET 已检测到指定Web服务器运行的不是ASP.NET 1.1版。您将无法运行ASP.NET Web应用程序或服务。 A: 对于这个错误有很多可能的原因,您可以参考下面几篇KB和文章的解决方案: “PRB: "The specified Web server is not running ASP.NET version 1.1" error... 阅读全文
posted @ 2005-03-09 17:20 PointNet 阅读(2130) 评论(1) 推荐(0) 编辑
摘要:1.使用SMTP MailMessage Mailer = new MailMessage(); Mailer.From = "服务器域名"; Mailer.To = "发送的邮箱"; Mailer.Subject = "邮件名"; Mailer.Body = "邮件内容"; Mailer.BodyFormat = System.Web.Mail.MailFormat.Text; SmtpMail... 阅读全文
posted @ 2005-03-09 09:55 PointNet 阅读(2356) 评论(1) 推荐(1) 编辑
摘要:通过查找注册表 HKEY_CLASSES_ROOT\MIME\Database\Content Type word的mime是application/msword 直接打开文件在网页中 Response.Buffer = true; Response.ContentType = "application/vnd.ms-excel"; byte[] buffer = new byt... 阅读全文
posted @ 2005-03-08 15:09 PointNet 阅读(1420) 评论(0) 推荐(0) 编辑
摘要:http://support.microsoft.com/?kbid=867460#toc 阅读全文
posted @ 2005-03-07 13:16 PointNet 阅读(903) 评论(0) 推荐(0) 编辑
摘要:1.通过Cookie,因为它既可以在服务器端对其进行操作,也可在客户端对其进行操作 但是缺点是不安全,而且有时客户端会由于安全问题禁用Cookie! 例子: 以下是父页的Html代码 main child 页[子页] child ... 阅读全文
posted @ 2005-03-02 10:31 PointNet 阅读(1475) 评论(0) 推荐(0) 编辑