随笔分类 - form
摘要:通过一个winform 界面实现远程登录网站 带验证码,别的不说了,下附开放代码View Code 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 System.IO;using System.Text.RegularExpressions;usi.
阅读全文
摘要:关于application/x-www-form-urlencoded等字符编码的解释说明在Form元素的语法中,EncType表明提交数据的格式 用 Enctype 属性指定将数据回发到服务器时浏览器使用的编码类型。下边是说明:application/x-www-form-urlencoded: 窗体数据被编码为名称/值对。这是标准的编码格式。multipart/form-data: 窗体数据被编码为一条消息,页上的每个控件对应消息中的一个部分。text/plain: 窗体数据以纯文本形式进行编码,其中不含任何控件或格式字符。补充 form的enctype属性为编码方式,常用有两种:appl
阅读全文