07 2015 档案
摘要:以Car表增删改为例Car.aspx Car.aspx.cs protected void Page_Load(object sender, EventArgs e) { List list = new CarBF()....
阅读全文
摘要:添加一般处理程序using System;using System.Web;using System.Web.SessionState;//IRequiresSessionState的命名空间using System.Drawing;public class yanzheng : IHttpHand...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text.RegularExpressions;using System.Web;using System.Web.UI;using System...
阅读全文
摘要:验证控件一般是在注册的时候用到,是直接将JS代码封装到了控件里面,拉过来直接可以用,下面介绍一下主要用法:1、CompareValidator:比较验证 常用属性:ControlToCompare 用来进行比较的控件的ID ControlToValidate 要验证的控件的ID ...
阅读全文
摘要:Learn about the differences between ASP.NET MVC application and ASP.NET Web Forms applications. Learn how to decide when to build an ASP.NET MVC app...
阅读全文
摘要:匿名方法是C#2.0引入的一个新特性,它允许开发者内联(inline)声明自己的函数代码而无须使用委托函数(delegate function)。匿名方法通常在1. 需要一个临时方法,该方法使用次数极少;2. 这个方法的代码很短,甚至可能比方法声明都短的情况下使用。 可以把C# 匿名方法想象为...
阅读全文
摘要:数据结构Modelspublic class FruitBF { private MyDbDataContext Context = new MyDbDataContext(); public List Select() { re...
阅读全文
摘要:LINQ 表结构Modelspublic class CarBF { private MyDbDataContext Context = new MyDbDataContext(); //每一页 public List Select(int PageS...
阅读全文
摘要:大体框架新建一空页面 编辑模版页FirstMoBan@{ Layout = null;} FirstMoBan ...
阅读全文
摘要:public class HomeController : Controller { // // GET: /Home/ //默认显示的主页面 public ActionResult Index() { ...
阅读全文
摘要:Models结构ProductorBF public class ProductorBF { private MyDbDataContext Context = new MyDbDataContext(); public List Select() {...
阅读全文
摘要:@using MvcApplication1.Models;@{ Layout = null;} Index @using (@Html.BeginForm("panduai","LogIn",FormMethod.Post)) { ...
阅读全文
摘要:方法一:1、在 “解决方案资源管理器” 右击 “引用” 添加 “System.Management” 的引用。2、添加 “using System.Management;”。 1 static void SetNetworkAdapter() 2 { 3 Ma...
阅读全文
摘要:引入的命名空间代码如下: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using S...
阅读全文
摘要:视图引擎采用Razor写的增删改查Controllersusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using MvcApplication...
阅读全文
摘要:MVC 是一种使用 MVC(Model View Controller 模型-视图-控制器)设计创建 Web 应用程序的模式:Model(模型)表示应用程序核心(比如数据库记录列表)。View(视图)显示数据(数据库记录)。Controller(控制器)处理输入(写入数据库记录)。MVC 模式同时提...
阅读全文
摘要:Windows是一消息(Message)驱动式系统,Windows消息提供了应用程序与应用程序之间、应用程序与Windows系统之间进行通讯的手段。应用程序要实现的功能由消息来触发,并靠对消息的响应和处理来完成。Windows系统中有两种消息队列,一种是系统消息队列,另一种是应用程序消息队列。计...
阅读全文