易截截图软件、单文件、免安装、纯绿色、仅160KB

关于ASP.NET/C#中对Cookie的操作

写cookie
  1 HttpCookie cookie = new HttpCookie("Info");//定义cookie对象以及名为Info的项
  2 DateTime dt = DateTime.Now;//定义时间对象
  3 TimeSpan ts=new TimeSpan(1,0,0,0);//cookie有效作用时间,具体查msdn
  4 cookie.Expires = dt.Add(ts);//添加作用时间
  5 cookie.Values.Add("user","cxbkkk");//增加属性
  6 cookie.Values.Add("userid","1203");
  7 Response.AppendCookie(cookie);//确定写入cookie中
  读取cookie
  1 if(Request.Cookies["Info"]!=null)
  2 {
  3     string temp=Convert.ToString(Request.Cookies["Info"].Values["user"])+" "+Convert.ToString(Request.Cookies["Info"].Values["userid"]);
  4     //读全部就用Request.Cookies["Info"].Value)
  5     if(temp=="")
  6     {
  7         Response.Write("空");
  8     }
  9     else
  10         Response.Write(temp);
  11 }
  12 else
  13 {
  14     Response.Write("error");
  15 }
  修改cookie
  1 Response.Cookies["Info"]["user"] = "2";
  2 Response.Cookies["Info"].Expires = DateTime.Now.AddDays(1);
  删除cookie下的属性
  1 HttpCookie acookie=Request.Cookies["Info"];
  2 acookie.Values.Remove("userid");
  3 acookie.Expires = DateTime.Now.AddDays(1);
  4 Response.Cookies.Add(acookie);
  删除所有cookie,就是设置过期时间为现在就行了
  1 int limit=Request.Cookies.Count - 1;
  2 for(int i=0;i<limit;i++)
  3 {
  4     acookie = Request.Cookies(i)
  5     acookie.Expires = DateTime.Now.AddDays(-1)
  6     Response.Cookies.Add(acookie)
  7 }
以下是在工作中遇到的问题:
  点击支持按扭时,数量加1。点过则不允许在点!
  #region btn_AddSupports_Click
  /// <summary>
  ///
  /// </summary>
  /// <param name="sender"


相关文档:

ASP.NET MVC 系列文章

http://www.cnblogs.com/chsword/archive/2008/03/10/dotnetmvcframework.html
以下文章属于ASP.NET MVC 1.0 正式版
ASP.NET MVC雕虫小技 1-2
ASP.NET MVC 重点教程一周年版 第十一回 母版页、用户自定义控件及文件上传
ASP.NET MVC 重点教程一周年版 第十回 请求Controller
ASP.NET MVC 重点教程一周年版 第九回 H ......

WCF中的服务和ASP.NET AJAX中的WebService

WCF的架构:using System.ServiceModel;
契约:Contract
[ServiceContract]
public partial interface IContract
{
        [OperationContract]
        string DocumentWebHostUrl();
}
服务:Service
[ServiceBehavior(IncludeException ......

asp.net 中实现页面每隔一分钟刷新一次的效果

在Global.asax
需要回顾的知识点是 线程 和  文本文件的读写。
<%@ Application Language="C#" %>
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.Threading" %>
<script runat="server">
    string logpath;
    Thread thread; ......

ASP.NET页面刷新方法总结

先看看ASP.NET页面刷新的实现方法:
第一:
C# code
private void Button1_Click( object sender, System.EventArgs e )
{
Response.Redirect( Request.Url.ToString( ) );
}
第二:
C# code
private void Button2_Click( object sender, System.EventArgs e )
{
Response.Write( " < script lang ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号