明天的明天 永远的永远 未知的一切 我与你一起承担 ??

是非成败转头空 青山依旧在 几度夕阳红 。。。
  博客园  :: 首页  :: 管理

2008年10月31日

摘要: 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;using System.Net;using S... 阅读全文

posted @ 2008-10-31 04:03 且行且思 阅读(2187) 评论(2) 推荐(0) 编辑

摘要: 因为项目需要,需从向HTTPS页面发送一些数据并获取返回的数据。普通的http网页好办,直接用HttpWebRequest就可以轻松实现。如果对方网页是HTTP但需要登录后才能查看的,也不难实现:用HttpWebRequest加上身份信息构造一个HTTP基层协议内容,再和服务器来一次往返提取到SessionID然后发送就可以搞定。 CodeCode highlighting produced by... 阅读全文

posted @ 2008-10-31 03:54 且行且思 阅读(3698) 评论(2) 推荐(0) 编辑

摘要: HttpWebRequest使用注意(发生阻塞的解决办法) HttpWebRequest myRequest = null; HttpWebResponse myResponse = null; Stream reqStream = null; Stream resStream = null; try... 阅读全文

posted @ 2008-10-31 03:51 且行且思 阅读(2116) 评论(0) 推荐(0) 编辑

摘要: 1.把web上的DataGrid直接导入到excel public void ExportToExcel(System.Web.UI.Control ctl) { bool CurrCtlVisible=ctl.Visible; ctl.Visible=true; Response.AppendHeader("Conte... 阅读全文

posted @ 2008-10-31 03:43 且行且思 阅读(867) 评论(0) 推荐(0) 编辑

摘要: Asp.Net调试javascript蛮方便的 1.设置IE高级选项,把禁止调试去掉2.然后关掉IE再打开,并打开调试的应用程序3.打开.net调试4.附加到.net进程5.然后再刷新web页面,可以看到客户端页面javascript脚本就可以调试了 阅读全文

posted @ 2008-10-31 03:28 且行且思 阅读(314) 评论(0) 推荐(0) 编辑

摘要: [C#]使用HttpWebRequest请求远端服务器时如何加载SSL证书 首先加上引用“System.Security.DLL”, 其次在工程中 using System.Security.Cryptography.X509Certificates; 这样就可以使用“ X509Certificate Class ”了,它的... 阅读全文

posted @ 2008-10-31 03:19 且行且思 阅读(5179) 评论(1) 推荐(0) 编辑