错误代码:400 400错误是由于不正确的请求造成的,说明正在搜索的网页可能已经删除、更名或暂时不可用。 错误代码:401.1401.1错误是由于登陆失败造成的,说明没有权限查看该目录或网页。 错误代码:401.2401.2错误是由于服务器配置问题而导致登陆失败,由于服务器端脚本未能正确发送 WWW Read More
posted @ 2016-07-09 12:01 Linda_Je Views(192) Comments(0) Diggs(0) Edit
收集了一些meta的语法,也将不断的更新。不断做点滴的收集,总之,为了前端这些东西呀,我也是操碎了心... 1 告诉浏览器网页所识别的文件类型及语言类型,比如说,我们要让浏览器识别HTM/HTML类型的简体中文网面; 2 让一些搜索引擎搜索到你的网页 3 最佳兼容方案 4 ... Read More
posted @ 2015-07-06 11:26 Linda_Je Views(269) Comments(0) Diggs(0) Edit
@charset "utf-8";body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,span,a{margin:0;padding:0;font-size:... Read More
posted @ 2015-06-26 14:31 Linda_Je Views(218) Comments(0) Diggs(0) Edit
/// <summary> /// 提取Cookie /// </summary> /// <returns></returns> public static List<ShoppingGoods> TiQuCookies() { ShoppingMallContext db = new Shopp Read More
posted @ 2015-06-25 17:33 Linda_Je Views(218) Comments(0) Diggs(0) Edit
添加Cart、Order和OrderDetails模型类 购物和结算都要使用某些新的类,在Models文件夹上单击右键添加Cart类(Card.cs),代码如下: using System.ComponentModel.DataAnnotations; namespace MvcMusicStore Read More
posted @ 2015-06-25 17:32 Linda_Je Views(286) Comments(0) Diggs(0) Edit
/// <summary> /// 删除Cookie /// </summary> /// <param name="skuID">从购物车选择要删除的商品ID</param> /// <returns>先从Cookie里提取出所有的商品并放进一个字典 Dictionary<int, int> di Read More
posted @ 2015-06-25 17:30 Linda_Je Views(203) Comments(0) Diggs(0) Edit
/// /// 商品小类筛选页面 GoodsTypeName ----------------SelectGoods--商品筛选 --图文 /// Home/SelectGoods /// /// /// public ActionResult selectgoods(int ... Read More
posted @ 2015-06-25 17:29 Linda_Je Views(369) Comments(0) Diggs(0) Edit
该文被密码保护。 Read More
posted @ 2014-10-31 10:06 Linda_Je Views(1) Comments(0) Diggs(0) Edit
/// /// 添加Cookie /// /// GoodsToCookie public static int AddCookies(GoodsCookie gs) { string userID = null; if (HttpContext.Current.Session["hasLogin"] != null) { userID = HttpContext.Current.Sessi... Read More
posted @ 2014-04-01 10:59 Linda_Je Views(329) Comments(0) Diggs(0) Edit