摘要: Html.BeginForm与Ajax.BeginForm都是MVC架构中的表单元素,它们从字面上可以看到区别,即Html.BeginForm是普通的表单提交,而Ajax.BeginForm是支持异步的表单提交,这对于我们开发者来说是一个福音,我们不用再自己去用JQ代码了,直接用MVC自代的Ajax.BeginForm就可以很容易的完成一个异步的表单提交动作。Html.BeginForm的原型解释: 1 @using (Html.BeginForm()) {} //提交到当前页面 2 3 @using (Html.BeginForm(new {} )) {} //提交到当前页面,并可以传递参. 阅读全文
posted @ 2013-10-31 14:56 Starry.Liu 阅读(615) 评论(0) 推荐(0) 编辑
摘要: 1.数据库配置The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not validWeb.config 中进行配置2.DLL引用说明: 在编译向该请求提供服务所需资源的过程中出现错误。请检查下列特定错误详细信息并适当地修改源代码。编译器错误消息: CS0012: 类型“System.Data.Objects.DataClasses.EntityObject”在未被引用的程序集中定义。 阅读全文
posted @ 2013-10-31 10:18 Starry.Liu 阅读(220) 评论(0) 推荐(0) 编辑