package response;import java.io.IOException;import java.io.OutputStream;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;im...
分类:
其他好文 时间:
2014-08-14 13:16:38
阅读次数:
204
后退+刷新在C# Web程序中,如为页面按钮写返回上一页代码this.RegisterClientScriptBlock("E", "");其中,history.go(-2),要写为-2,因在按钮事件触发前,已刷新一次页面,所以应是-2。Response.Write("");此处也要写为“-2”。....
分类:
编程语言 时间:
2014-08-14 01:10:17
阅读次数:
304
1.将excel另存为html,将其复制到aspx文件中2.输出格式为excel InitData(); Response.Clear(); Response.Buffer = true; Response....
分类:
Web程序 时间:
2014-08-13 22:10:57
阅读次数:
262
一、Cookie设置 cookieHttpCookie cookie = new HttpCookie(name);cookie.Value = user.UserID.ToString();Response.Cookies.Add(cookie);读取cookieSystem.Web.HttpCo...
分类:
其他好文 时间:
2014-08-13 21:54:28
阅读次数:
174
上一篇博客了解了Servlet,这次就来了解一下Filter,简单来说Filter是Servlet规范的一种技术,并不是一个Servlet。它也称为一个过滤器,用来改变一个request和修改一个response,能够在一个request到达servlet之前预处理request,也可以在response离开servlet时处理response。
一、生命周期
上一...
分类:
编程语言 时间:
2014-08-13 18:47:57
阅读次数:
226
设置cookie的各种过期时间默认cookies失效时间是直到关闭浏览器,cookies失效,也可以指定cookies时间。Response.Cookies("user_name").Expires=Date+1 '指定cookie保存时间保留COOKIES一个小时Response.Cookies(...
分类:
其他好文 时间:
2014-08-13 18:31:06
阅读次数:
150
public static void DownLoadFile(HttpRequest _Request, HttpResponse _Response, string fileName, string fullPath) { FileInfo fileInfo = new...
分类:
其他好文 时间:
2014-08-13 17:45:06
阅读次数:
163
HTMLPage1.htm页
下载
下载Handler1.ashx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WebApplication3
{
///
/// 下载Handler1 的摘要...
分类:
其他好文 时间:
2014-08-13 14:59:56
阅读次数:
470
response.sendRedirect , // 重定向,服务器端将uri返回到客户端,客户端再次发送请求。 RequestDispatcher rd = getServletContext().getRequestDispatcher("/login.jsp"); rd.forward...
分类:
其他好文 时间:
2014-08-13 12:17:26
阅读次数:
206
二维码又称QR Code,QR全称Quick Response,是一个近几年来移动设备上超流行的一种编码方式,它比传统的Bar Code条形码能存更多的信息,也能表示更多的数据类型
分类:
其他好文 时间:
2014-08-13 01:04:34
阅读次数:
272