2011年4月14日

在Windows 2003 Server 上配置Microsoft Excel、Microsoft Word应用程序权限时 error: 8000401a 的解决方法!

摘要: 在Windows2003Server上配置Microsoft Excel、Microsoft Word应用程序权限时error:8000401a 的解决方法 2010-09-06 12:55Asp.net 2.0在Windows 2003 Server 上配置Microsoft Excel、Microsoft Word应用程序权限时 error: 8000401a 的解决方法!Server Error in '/' Application.---------------------------------------------------------------------- 阅读全文

posted @ 2011-04-14 14:52 Jan.David 阅读(4117) 评论(0) 推荐(0) 编辑

failed due to the following error: 80070005 错误解决方案

摘要: 公司的一个系统是ASP.NET页面下的导出Excel功能,采用了在服务器上打开一个Excel程序,写入数据,保存在服务器上,然后再传递给客户端的方法。在XP上完美运行之后,正式发布到WIN2003服务器上的时候,却出现了问题.Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005.网上大部分资料来自于:http://blog.crowe.co.nz/archive/200 阅读全文

posted @ 2011-04-14 09:31 Jan.David 阅读(3989) 评论(0) 推荐(0) 编辑

2011年4月3日

C#在托盘显示图标

摘要: C#在托盘显示图标using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace notifyIconShow{ public partial class notifyIconShow : Form { public notifyIconShow() { InitializeComponen 阅读全文

posted @ 2011-04-03 10:40 Jan.David 阅读(9027) 评论(0) 推荐(0) 编辑

2011年4月1日

Webservice Session使用方法 又一篇

摘要: 在webService 有两个方法1. [WebMethod(Description = "登录",EnableSession=true)]public bool ClientLogin(string uNmae, string pwd){//连接数据库验证用户登录//创建一个sessionSystem.Web.HttpContext.Current.Session["UserName"] = username;return true;}2.[WebMethod(Description = "获取登录用户名称",EnableSessi 阅读全文

posted @ 2011-04-01 10:56 Jan.David 阅读(4292) 评论(2) 推荐(2) 编辑

在webservice中使用session和cookie

摘要: 要在webservice中使用session,1.需要在服务端的方法中加入[WebMethod(EnableSession=true)]修饰方法,2.在客户端,要在实例化了webservice代理类之后,要为它的CookieContainer 实例化一个 new CookieContainer();这样才能使用session存储状态。3.另外在多个webservice代理中,只要含有相同的cookie,就能共用相同的session,其中的cookie通过代理类的CookieContainer.GetCookies(new Uri(s.Url))["ASP.NET_SessionId& 阅读全文

posted @ 2011-04-01 08:56 Jan.David 阅读(20193) 评论(6) 推荐(2) 编辑

2011年3月31日

JavaScript接收页面参数

摘要: 小小方法用起来方便,简洁.function Request(name){ var source = location.search; var reg = new RegExp("(^|\?|&)"+ name +"=([^&]*)(\s|&|$)", "i"); if (reg.test(source)) return RegExp.$2; return "";}function QueryString(item){ var sValue=location.search.match(new 阅读全文

posted @ 2011-03-31 09:45 Jan.David 阅读(908) 评论(0) 推荐(0) 编辑

2011年3月23日

AJAX(XMLHttpRequest)进行跨域请求方法详解

摘要: http://blog.csdn.net/net_lover/archive/2010/01/11/5172509.aspxhttp://blog.csdn.net/net_lover/archive/2010/01/11/5172522.aspxhttp://blog.csdn.net/net_lover/archive/2010/01/11/5172532.aspxXDomainRequest Objecthttp://msdn.microsoft.com/zh-cn/library/cc288060(v=VS.85).aspx 阅读全文

posted @ 2011-03-23 13:38 Jan.David 阅读(238) 评论(0) 推荐(0) 编辑

转载:js跨域问题小结

摘要: 本文来自:http://www.kuqin.com/webpagedesign/20090422/47458.htmljavascript出于安全方面的考虑,是不允许跨域调用其他页面的对象的。但在安全限制的同时也给注入iframe或是ajax应用上带来了不少麻烦。没有记错的话前三届D2论坛上每次都有人提这个东西,这里把涉及到跨域的一些问题简单地整理一下:首先什么是跨域,简单地理解就是因为javascript同源策略的限制,a.com 域名下的js无法操作b.com或是c.a.com域名下的对象。更详细的说明可以看下表:URL说明是否允许通信http://www.kuqin.com/lab/a. 阅读全文

posted @ 2011-03-23 12:51 Jan.David 阅读(361) 评论(0) 推荐(0) 编辑

转载:Js 跨域调用问题

摘要: Js 跨域调用问题Javascript出于安全性考虑,是不允许跨域调用其他页面的对象的。因此也就导致了在一些ajax应用中,使用跨域的web service成为问题。这里整理了一些方法,来解决这个问题:1.设置document.domain。前提条件:两个页面同属于一个基础域(例如都是xxx.com,或是xxx.com.cn);同一协议(例如都是http);同一端口(例如都是80)。方法:设置两个页面的document.domain都设置为自己所在的基础域名。例子:aaa.xxx.com里面的一个页面需要调用bbb.xxx.com里的一个对象,则将两个页面的document.domain都设置 阅读全文

posted @ 2011-03-23 12:49 Jan.David 阅读(407) 评论(0) 推荐(0) 编辑

2011年2月26日

C#复制、粘贴文本到剪贴板

摘要: //复制: private void button1_Click(object sender, System.EventArgs e) { //如果选中部分不为空 把选中的内容复制到剪贴板 if(textBox1.SelectedText != ”") Clipboard.SetDataObject(textBox1.SelectedText); } //粘贴: private void button2_Click(object sender, System.EventArgs e) { // Declares an IDataObject to hold the data retu 阅读全文

posted @ 2011-02-26 00:23 Jan.David 阅读(820) 评论(0) 推荐(1) 编辑

导航