摘要:
Word的编码是Unicode,从Word连接的超链接会附带Unicode编码进行打开, 所以,如果没有对链接页面设定编码,将出现乱码, 解决方法之一: 设置编码为UTF-8 阅读全文
摘要:
用HTML的File控件上传图片,用JS判断和限制图片格式、类型、尺寸 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1function CheckFile(f,p) 2{ 3//判断图片尺寸 4var img=null; 5im... 阅读全文
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1function FinalCheck() 2{ 3//声明一个数组 4var chk=new Array(); 5//获取指定类型CHECKBOX 6chk=document.g... 阅读全文
摘要:
用控制台操作POP STEP1: cmd->telnet pop.126.com 110 STEP2: USER 用户名(一般的个人邮箱可以直接写用户名,不用写服务器后缀,如:rxc如果是企业邮箱,比如263,就需要些后缀了,如rxtcc@vancl.cn) STEP3: PASS 密码 STEP4: STAT(显示出邮箱的统计信息) STEP5: LIST(显示出所有邮件的一个基本信息,如:邮... 阅读全文
摘要:
获取邮件正文的内容 获取邮件中的HTML页面 下面的函数假定已经将邮件的几个部分分开 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1private string GetText_Html(string PartSrc) 2{ 3//... 阅读全文
摘要:
获取邮件主题 邮件的主题一般采用Base64编码,例如:Subject: =?gb2312?B?0MLUsbmktb242s2o1qo=?= 其中=?和?=之间的就是邮件主题,前半部分标示了邮件内容原始编码(gb2312),后面的B表示了邮件主题现在的编码 Code highlighting produced by Actipro CodeHighlighter (freeware) http... 阅读全文
摘要:
邮件操作,用POP3协议实现 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1private void GetMail() 2{ 3//连接邮件服务器 4System.Net.Sockets.TcpClient TC = new S... 阅读全文
摘要:
在纯为了数据处理与传递的页面适用 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->1Response.ContentEncoding = Encoding.UTF8; 2Response.ContentType = "text/html"; ... 阅读全文
摘要:
ASP.NET中数据传递:获取用Meta传递的数据: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1public static string GetMeta(string strFullUrl, string MateName) 2{... 阅读全文
摘要:
GridView的操作:从GridView导出数据到Excel 方案一:简单可行的方法 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->1protectedvoidWriteExcel_Btn_Click(objectsender,... 阅读全文