2013年9月15日 星期日

CSS背景漸進效果

CSS背景漸進效果

Chrome:background: -webkit-linear-gradient(left, #ff0000 0%, #ffcc33 25%, #33cccc 50%, #3333ff 75%, #cc33ff 100%)

Firfox:background: -moz-linear-gradient(left center , rgb(230, 30, 25) 0%, rgb(245, 197, 58) 25%, rgb(66, 186, 189) 50%, rgb(47, 77, 159) 75%, rgb(137, 79, 156) 100%)

標籤:

2013年9月14日 星期六

C# WebBrower 匯入 jquery

下載 zoyobar : https://code.google.com/p/zsharedcode/wiki/Download

using zoyobar.shared.panzer.web.ib;
using zoyobar.shared.panzer;
using zoyobar.shared.panzer.web;

IEBrowser ie = new IEBrowser(this.webBrowser1);

// 导航到页面 http://www.google.com.hk/
 ie.Navigate(@"http://www.google.com.hk");

// 安装跟踪脚本, 执行 jquery 必需.
ie.InstallTrace();

// 安装本地的 jquery 脚本.
ie.InstallJQuery(@"http://code.jquery.com/jquery-2.0.3.min.js");

標籤:

2013年9月4日 星期三

C# Session .ashx .cs 的存取

.ashx
public class TVShopping : IHttpHandler, System.Web.SessionState.IRequiresSessionState //function加入這行
{
    context.Session["string"];
}

.cs
HttpContext.Current.Session["userId"].ToString();

標籤:

C# 轉 json 套件

Newtonsoft.Json类库下载:http://json.codeplex.com/

using Newtonsoft.Json;

List<string> obj = new List<string>();
string json = JsonConvert.SerializeObject(obj , Formatting.Indented);

標籤: