摘要: namespace MvcApplication4{ public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { route... 阅读全文
posted @ 2015-03-24 14:39 ip8888 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 1建立一个基本的mvc项目添加控制器如下:using System.Web;using System.Web.Mvc;using System.Web.Routing;namespace MvcApplication4.Controllers{ public class Default1Con... 阅读全文
posted @ 2015-03-24 14:36 ip8888 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 最近遇到一个很有意思的问题,如何统计一天之内30分钟内同时在线的人数峰值,我思考了两个模型,一:教师上课点名模型 2:学生相互确认签到模型,用到了集合,二叉查找树,快速定位判断,用内存换取执行时间算是勉强可以接受,但是随着数据量的增长,这两个模型捉急了,于是考虑hyperloglog算法,不懂,于是... 阅读全文
posted @ 2015-03-24 14:23 ip8888 阅读(888) 评论(0) 推荐(0) 编辑
摘要: http://stephenwalther.com/archive/2008/07/08/asp-net-mvc-tip-15-pass-browser-cookies-and-server-variables-as-action-parameters(转)ASP.NET MVC Tip #15 –... 阅读全文
posted @ 2015-03-24 11:19 ip8888 阅读(907) 评论(0) 推荐(0) 编辑
摘要: http://localhost:64685/?id=4 public string Ajax(string id) { string myid = id; //myid就是id,来自搜索栏的id var text = Requ... 阅读全文
posted @ 2015-03-24 10:23 ip8888 阅读(1022) 评论(0) 推荐(0) 编辑
摘要: 1:编码解码防止乱码:HttpUtility.*Code2:文本替换:@{@:"string";string}3:js中使用Razor:@Ajax.JavaScriptStringEncode(C#表达式);4:隐式代码表达式:@Model.message;5:显式代码表达式:@(1+2)6:无编码... 阅读全文
posted @ 2015-03-24 09:09 ip8888 阅读(195) 评论(0) 推荐(0) 编辑