上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 28 下一页
摘要: #region 路径操作 /// /// 路径操作 /// /// /// private void button1_Click(object sender, EventArgs e) { ... 阅读全文
posted @ 2014-05-26 22:27 编程猴子 阅读(273) 评论(0) 推荐(0) 编辑
摘要: class Person { public string Name { get; set; } //1. 私有化构造函数 //2. 提供1个私有的静态的Person类型的变量 //3. 提供1个公共的静态的方法 用于返回上面的变量. private static Person p; pu... 阅读全文
posted @ 2014-05-26 22:26 编程猴子 阅读(209) 评论(0) 推荐(0) 编辑
摘要: public class BubbleSortLib { public int[] Sort(int[] arr) { for (int outer = arr.Length - 1; outer... 阅读全文
posted @ 2014-05-26 17:36 编程猴子 阅读(177) 评论(0) 推荐(0) 编辑
摘要: @RenderSection("bscript", false) //false表示不是必须填充填充bscript占位符 @section bscript{} 阅读全文
posted @ 2014-05-22 14:49 编程猴子 阅读(633) 评论(0) 推荐(0) 编辑
摘要: @Html.Label("Label", "Label") @*渲染成Label*@@Html.Hidden("Hidden","Hidden") @*渲染成 *@@Html.TextBox("TextBox", "TextBox", new { color="red",font="2",size=... 阅读全文
posted @ 2014-05-22 00:30 编程猴子 阅读(598) 评论(0) 推荐(0) 编辑
摘要: HttpUtility.HtmlEncode来预处理用户输入,这能阻止用户向视图中用链接注入js代码或html标记1、[Required]:非空验证2、[StringLength(**)]:设置字符的长度2.1、[StringLength(**,MinimumLength=*):设置字符长度Mini... 阅读全文
posted @ 2014-05-22 00:29 编程猴子 阅读(236) 评论(0) 推荐(0) 编辑
摘要: @model MvcApplication1.Models.ViewClass @{ ViewBag.Title = "View2"; } @******引用这两个js实现客户端的验证********@viewdata无法跨控制传值 ViewData: @ViewData["View1"]TempD... 阅读全文
posted @ 2014-05-22 00:23 编程猴子 阅读(274) 评论(0) 推荐(0) 编辑
摘要: @{ ViewBag.Title = "ajax"; }@using (@Html.BeginForm()) { @Ajax.ActionLink("这是一个ajax请求", "ajax", new AjaxOptions{ UpdateTargetId = "ajaxId", //Insertio... 阅读全文
posted @ 2014-05-22 00:22 编程猴子 阅读(149) 评论(0) 推荐(0) 编辑
摘要: @{ ViewBag.Title = "主页"; } 这里就是渲染Body啦.~~不需要写神马<asp:Content />,其实因为RenderBody()不在有歧义. @ViewBag.Message 若要了解有关 ASP.NET MVC 的更多信息,请访问 htt... 阅读全文
posted @ 2014-05-22 00:19 编程猴子 阅读(165) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using System.Web.Security;namespace 验证权限.Control... 阅读全文
posted @ 2014-05-21 23:39 编程猴子 阅读(552) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 28 下一页