摘要:
Action方法接受参数:如果你希望某个方法只处理get请求或post请求可以在方法前加上[HttpGet]或[HttpPost],如果都不加那么这个方法两种请求都可以处理。 向控制器传值 1.通过Request.Form["name"]; public ActionResult Ar() { va 阅读全文
摘要:
Code First又称代码优先,EF提供类型结构生成SQL并创建数据库中的表 student类 public class student:DbContext 注:DbContext表示一个工作单元和存储库的组合模式,可以用来从数据库查询和组一起变化。 { public student() { Da 阅读全文
摘要:
1.ADO.NET对象的使用 public class SQLHelper{ #region Connectionstring 字符串 public static string Connectionstr = System.Configuration.ConfigurationManager.Con 阅读全文