摘要: 简要截图: 简要代码: 阅读全文
posted @ 2016-05-28 14:29 shuai7boy 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 服务器代码: public void ProcessRequest(HttpContext context) { //context.Response.ContentType = "text/plain"; //context.Response.Write("Hello World"); Rando 阅读全文
posted @ 2016-05-28 09:53 shuai7boy 阅读(182) 评论(0) 推荐(0) 编辑
摘要: public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; //1.获取用户上传的文件流 HttpPostedFile file = context.Request.Fi 阅读全文
posted @ 2016-05-28 09:53 shuai7boy 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 服务器: context.Response.ContentType = "text/plain"; //1.获取用户上传的图片 HttpPostedFile file=context.Request.Files[0]; //2.根据用户上传文件的字节,创建一个图片 using (Image orig 阅读全文
posted @ 2016-05-28 09:52 shuai7boy 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 服务器: //首先修改报文头 context.Response.ContentType = "image/png"; //获取用户发送过来的姓名和ip等信息 string strName = context.Request.QueryString["txtName"];//获取用户名 string 阅读全文
posted @ 2016-05-28 09:51 shuai7boy 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 服务器代码: //在下载之前可以做权限验证,积分判断等,如果条件满足了,则提供下载,否则提示用户权限不足或权限不够,不允许下载。 //获取要下载的文件名称 string fileName = context.Request.QueryString["filename"]; //拼接文件路径 stri 阅读全文
posted @ 2016-05-28 09:49 shuai7boy 阅读(827) 评论(0) 推荐(0) 编辑
摘要: 注意事项: 1>表单的提交方式必须为post,method="post";//由于http上面的数据大小有限,所以不支持使用get显示到上面。 2>必须修改表中提交数据时的数据组织方式 enctype="application/x-www-form-urlencoded"//默认方式 数据是以键值对 阅读全文
posted @ 2016-05-28 09:48 shuai7boy 阅读(667) 评论(0) 推荐(0) 编辑