Easyui入门视频教程 第02集--- ASP.NET MVC下 搭建 EasyUI环境
目录
-----------------------
-----------------------
第一步 下载 easyui
http://www.jeasyui.com/download/v132.php
直接下载
http://www.jeasyui.com/download/downloads/jquery-easyui-1.3.2.zip
打开 vs2010 创建 MVC4 项目
如果你电脑没有安装 MVC4 的话 可以打开 官网 下载
安装后 在vs里面 才有 MVC4 的项目 创建
搭建 三层项目
@{
Layout = null;
} <!DOCTYPE html> <html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
<link href="../Contents/Easyui/themes/default/easyui.css" rel="stylesheet" type="text/css" />
<link href="../Contents/Easyui/themes/icon.css" rel="stylesheet" type="text/css" />
<script src="../Contents/Easyui/jquery-1.8.0.min.js" type="text/javascript"></script>
<script src="../Contents/Easyui/jquery.easyui.min.js" type="text/javascript"></script>
<script src="../Contents/Easyui/easyui-lang-zh_CN.js" type="text/javascript"></script>
</head>
<body>
<div id="w" class="easyui-window" title="登录" data-options="modal:true,closed:false,iconCls:'icon-save'" style="width:500px;height:200px;padding:10px;">
The window content.
</div>
</body>
</html>
视频下载
http://pan.baidu.com/share/link?shareid=2832815100&uk=3576826227