摘要: HttpContext.Current.Request["paramNanme"] 全部 HttpContext.Current.Request.QueryString["paramNanme"] get HttpContext.Current.Request.Form["paramNanme"] 阅读全文
posted @ 2017-02-04 17:12 六月尾巴 阅读(352) 评论(0) 推荐(0)
摘要: 在Web.config的 <system.web>节点下加入 <webServices> <protocols> <add name="HttpPost" /> <add name="HttpGet" /> </protocols> </webServices> 阅读全文
posted @ 2017-02-04 11:22 六月尾巴 阅读(1350) 评论(0) 推荐(0)
摘要: 先上图, 以上所用的命令 show dbs use dbnames(所要是用的数据库名) show collections 展示该数据库的所有集合 db.collection.find() 查找该集合的所有数据 db.collection.find({"UserName":"username"}) 阅读全文
posted @ 2016-12-13 22:12 六月尾巴 阅读(231) 评论(0) 推荐(0)
摘要: 需要在.NET Framework 中引用 System.Net.Mail var emailAcount = "测试@qq.com"; var emailPassword = "授权码"; var content = "发送邮件"; MailMessage message = new MailMe 阅读全文
posted @ 2016-12-13 14:22 六月尾巴 阅读(156) 评论(0) 推荐(0)