导航

2013年3月22日

摘要: 国内解难网站:cocoachina.com资源查找:code4app.com国外解难网站:stackoverflow.com 阅读全文

posted @ 2013-03-22 16:11 유람객 阅读(123) 评论(0) 推荐(0)

2013年3月6日

摘要: http://filod.net/jqm/docs/pages/#http://www.cnblogs.com/ 阅读全文

posted @ 2013-03-06 11:36 유람객 阅读(148) 评论(0) 推荐(0)

2013年3月5日

摘要: http://blog.csdn.net/TangZhongxin/article/details/3932734// ASP.NET与GMail免费SMTP服务器// using System.Net.Mail;MailMessage message = new MailMessage();message.From = new MailAddress("User@gmail.com"); //...new MailAddress("User@gmail.com", "显示的名字");message.To.Add(new MailAd 阅读全文

posted @ 2013-03-05 20:52 유람객 阅读(199) 评论(0) 推荐(0)

摘要: http://www.codeproject.com/Articles/33052/Visual-Representation-of-SQL-JoinsVisual Representation of SQL JoinsByC.L. Moffatt,3 Feb 20094.98(237 votes)Download Visual SQL JOINs examples - 1.09 KBDownload Visual SQL JOINs cheat sheet - 143 KBIntroductionThis is just a simple article visually explainin 阅读全文

posted @ 2013-03-05 20:40 유람객 阅读(198) 评论(0) 推荐(0)

摘要: 使用cookie制作购物车思路:使用cookie存储产品ID和客户的订购量,其它的东西根据id值去库里面取先看看cookie类,专门用于插入产品、更新订购量、删除产品把产品添加到购物车的代码:publicclassCCookieShoppingCart{publicCCookieShoppingCart(){////TODO:Addconstructorlogichere//}publicstaticvoidAddToShoppingCart(intProductID,intamount){if(HttpContext.Current.Request.Cookies["Shoppin 阅读全文

posted @ 2013-03-05 18:17 유람객 阅读(207) 评论(0) 推荐(0)

摘要: http://stackoverflow.com/questions/410579/binding-for-wpf-stylesIf you want to replace the whole style (rather than just elements of it) then you'll probably be storing those styles in resources. You should be able to do something along the lines of:<Button> <Button.Style> <MultiB 阅读全文

posted @ 2013-03-05 18:08 유람객 阅读(139) 评论(0) 推荐(0)

2012年7月15日

摘要: Vmware 8.0终于出来了,不但支持Windows 8还能支持Mac OS X 10.7(Lion),真是强大无比啊!下面就介绍一下VMware 8完美安装Mac Lion正式版教程。1、下载Vmware Workstation 8.0正式版、下载Mac OS X 安装包、下载Mac引导工具、系统驱动。下载:Vmware Workstation 8.0正式版下载:下载Mac OS X 安装包下载:本文用到的其他工具打包2、设置虚拟机。3、安装Mac OS X 10.7(Lion),装驱动,因此就完美告成!创建虚拟机,这里基本下一步就可以,难度不大。选对虚拟机型号FreeBSD X 64,设 阅读全文

posted @ 2012-07-15 22:22 유람객 阅读(356) 评论(0) 推荐(0)

2012年2月15日

摘要: public int GetCount() { // Get the count of each item in the cart and sum them up int? count = (from cartItems in storeDB.Carts where cartItems.CartId == ShoppingCartId select (int?)cartItems.Count).Sum(); // Return 0 if all entries are null return coun... 阅读全文

posted @ 2012-02-15 13:44 유람객 阅读(152) 评论(0) 推荐(0)

2011年12月27日

摘要: package com.activity;import java.io.ByteArrayOutputStream;import java.io.File;import android.app.Activity;import android.content.Intent;import android.graphics.Bitmap;import android.net.Uri;import android.os.Bundle;import android.os.Environment;import android.provider.MediaStore;import android.view. 阅读全文

posted @ 2011-12-27 14:00 유람객 阅读(271) 评论(0) 推荐(0)