第一节:
前言(技术简介)
EasyUI 是一套 js的前端框架 利用它可以快速的开发出好看的 前端系统 web 它是在jquery的框架基础上面
现在越来越多的 企业用它来开发web系统
extjs (功能很强大 但是非常复杂 速度 我感觉也没有 easyui快)
easyui (比较适合初学者 小巧 而且 速度感觉还是可以 相对ext来说 )
ASP.NET MVC
sqlite 数据库
(一个小型的数据库 不用安装 很多单机软件 利用他来做数据保存)
工具 动软代码生成器 IDE(VS2010)
物理框架是 win7 64位
逻辑框架 三层 data business UI
MVC ASP.NET MVC
MVC 是在 .net 3.5 以后才有的一个东西
下载easyui
外链资源: easyui下载 地址:http://www.jeasyui.com/download/downloads/jquery-easyui-1.3.2.zip
在asp.net MVC中添加 easyui
第二节:
创建一个home页的view
index.aspx 在里面添加easyui的应用支持(添加js 和css)
<script src="../../Content/Easyui/jquery-1.8.0.min.js" type="text/javascript"></script> <script src="../../Content/Easyui/jquery.easyui.min.js" type="text/javascript"></script> <script src="../../Content/Easyui/easyui-lang-zh_CN.js" type="text/javascript"></script> <link href="../../Content/Easyui/themes/default/easyui.css" rel="stylesheet" type="text/css" /> <link href="../../Content/Easyui/themes/icon.css" rel="stylesheet" type="text/css" />@H_403_44@