十指相扣是幸福

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

摘要: 下面的例子将实现对Cookie的创建,赋值,显示,修改,移除,清除,是一个对Cookie操作的完整例子。// 写在前台页<%@ Page Language="C#" AutoEventWireup="true" CodeFile="cookie.aspx.cs" Inherits="cookie" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTM... 阅读全文
posted @ 2010-04-24 10:06 浅浅白云 阅读(590) 评论(0) 推荐(0)

2010年6月25日

摘要: [代码][代码] 阅读全文
posted @ 2010-06-25 15:50 浅浅白云 阅读(873) 评论(1) 推荐(2)

2010年4月26日

摘要: #include "stdafx.h"#include <iostream>using namespace std;int main(){ int r; //行数 int c; //列数 cout<<"Please input the number of rows of the dynamic array: "; cin>>r; //输入行数 cout<&... 阅读全文
posted @ 2010-04-26 17:21 浅浅白云 阅读(2216) 评论(2) 推荐(0)

2010年4月21日

摘要: (命名空间:System.Text)1.声明一个StringBuilder对象<--eg--- StringBuilder sb = new StringBuilder(“Hello”); ---eg-->2.比较String与StringBuilder(1) String为静态串,一旦定义一个String对象,它是不可改变的。在使用其他方法时,都要在内存中创建... 阅读全文
posted @ 2010-04-21 13:21 浅浅白云 阅读(416) 评论(0) 推荐(0)

2010年4月20日

摘要: 1.比较字符串(1) Compare方法(String类的静态方法)① int Compare ( string strA , string strB )② int Compare ( string strA , string strB , bool ignoreCase )③ int Compare ( string strA , string strB , StringComparison c... 阅读全文
posted @ 2010-04-20 23:47 浅浅白云 阅读(314) 评论(0) 推荐(1)