导航

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)