书签 分享 收藏 举报 版权申诉 / 88

类型ASPMVC30中文入门级教程.docx

  • 文档编号:11879979
  • 上传时间:2023-04-08
  • 格式:DOCX
  • 页数:88
  • 大小:2.01MB

    运行应用程序,注意网页中的大标题被修改为“我的MVCMovie应用程序”。

点击“关于”链接,你可以看见“关于”页面中的大标题也被修改为“我的MVCMovie应用程序”。

由此可以看出一旦修改了布局页面中的某处地方,该修改将会被应用到所有页面中。

图3-6在布局页面中修改了网页中显示的大标题

    完整的_Layout.cshtml文件中的代码如代码清单3-2所示。

    代码清单3-2_Layout.cshtml文件中的完整代码

DOCTYPEhtml>

    

    @ViewBag.Title

    

type="text/css"/>

    

type="text/javascript">

    

        

            

                

我的 MVCMovie 应用程序

            

            

                @Html.Partial("_LogOnPartial")

            

            

                

                    

  • @Html.ActionLink("主页","Index","Home")
  •                     

  • @Html.ActionLink("关于","About","Home")
  •                 

                

            

            

                @RenderBody()

                

                

            

        

     

        现在,让我们修改Index视图页面的标题。

        打开Views文件夹下的HelloWorld文件夹下的Index.cshtml文件。

    这里我们修改两处地方:

    首先,修改浏览器中的标题,然后修改

    标签中的小标题文字。

    修改后代码如代码清单3-3所示。

        代码清单3-3修改后的Index.cshtml视图模板文件

    @{

        ViewBag.Title="电影清单";

    }

    我的电影清单

    这是我的第一个视图模板

        ViewBag对象的Title属性代表了显示该页面时的浏览器中的标题文字。

    让我们回头看一下布局模板文件,在该文件的区段中的标签中使用了这个值来作为浏览器中的网页标题。</p><p>同时,通过这种方法,你可以很容易地在你的视图模板文件与布局模板文件之间进行参数的传递。</p><p>    运行应用程序,在地址栏中输入“http:</p><p>//localhost:</p><p>xxxx/HelloWorld”,注意浏览器中的网页标题,页面中的小标题文字都变为修改后的标题文字(如果没有发生变化的话,则可能你的网页被缓存住了,可以按Ctrl+F5键来在重新刷新页面时取消缓存)。</p><p>    同时也请注意_Layout.cshtml文件中的占位符中的内容被替换成了Index.cshtml视图模板中的内容,所以浏览器中展示的是一个单一的HTML文件。</p><p>浏览器中的运行结果如图3-7所示。</p><p>图3-7修改了标题后的Index视图模板文件</p><p>    此处,我们的数据(“这是我的第一个视图模板”文字)是被直接书写在文件中的,也就是说我们使用到了MVC应用程序的“V”(视图View)与“C”(控制器Controller)。</p><p>接下来,我们讲解一下如何创建一个数据库并从该数据库中获取模型数据。</p><p>3.3  将控制器中的数据传递给视图</p><p>    在我们使用数据库并介绍模型之前,首先我们介绍一下如何将控制器中的信息传递给视图。</p><p>浏览器接收到一个URL请求后,将会调用控制器类来进行响应。</p><p>你可以在控制器类中进行对接收到的页面参数进行处理的代码,你可以在控制器类中书写从数据库中获取数据的代码,你也可以在控制器类中书写代码来决定返回给客户端什么格式的响应文件。</p><p>控制器可以利用视图模板文件来生成HTML格式的响应文件并显示在浏览器中。</p><p>    控制器类负责提供视图模板文件在生成HTML格式的响应文件时所需要的任何数据或对象。</p><p>一个视图模板文件不应该执行任何业务逻辑,也不应该直接和数据库进行交互。</p><p>它只能和控制器类进行交互,获取控制器类所提供给它的数据,这样可以使你的代码更加清晰,容易维护。</p><p>    现在在我们的应用程序中,HelloWorldController控制器类中的Welcome方法带有两个参数—name与numTimes,Welcome方法直接向浏览器输出这两个参数的参数值。</p><p>这里,我们修改该方法使其不再直接输出数据,而是使用一个视图模板。</p><p>该视图模板将生成一个动态的响应流,这意味着我们需要将数据从控制器类传递给视图以便利用该数据来生成该响应流。</p><p>我们在该控制器类中将视图模板所需要的数据送入一个ViewBag对象中,该对象可以被视图模板直接接收。</p><p>    打开HelloWorldController.cs文件,修改Welcome方法,在该方法中为ViewBag对象添加一个Message属性与NumTimes属性,并且将属性值分别设定为经过处理后的name参数值与numTimes参数值。</p><p>ViewBag对象是一个动态对象,你可以为它添加任何属性并赋上属性值。</p><p>在未赋值之前该属性是不生效的,直到你赋值为止。</p><p>修改后的HelloWorldController.cs文件中的代码如代码清单3-4所示。</p><p>    代码清单3-4修改后的HelloWorldController.cs文件</p><p>usingSystem.Web;</p><p>usingSystem.Web.Mvc;</p><p>namespaceMvcMovie.Controllers</p><p>{</p><p>    publicclassHelloWorldController:</p><p>Controller</p><p>    {</p><p>        //</p><p>        //GET:</p><p>/HelloWorld/</p><p>        publicActionResultIndex()</p><p>        {</p><p>            returnView();</p><p>        }</p><p>        //</p><p>        //GET:</p><p>/HelloWorld/Welcome/</p><p>        publicActionResultWelcome(stringname,intnumTimes=1)</p><p>        {</p><p>            ViewBag.Message="Hello"+name;</p><p>            ViewBag.NumTimes=numTimes;</p><p>            returnView();</p><p>        }</p><p>    }</p><p>}</p><p>    现在ViewBag对象中已经包含了数据,它将被自动传递给视图。</p><p>  </p><p>    接下来,我们需要创建一个Welcome视图模板。</p><p>在“调试”菜单中,点击“生成MvcMovie”将应用程序进行编译,如图3-8所示。</p><p>图3-8 编译应用程序</p><p>    接下来,在Welcome方法中点击鼠标右键,然后点击“添加视图”,弹出对话框如图3-9所示。</p><p>图3-9为Welcome方法添加视图</p><p>    在该对话框中不做任何修改,直接点击添加按钮,View文件夹下的HelloWorld文件假种自动被创建了一个Welcome.cshtml文件,打开该文件,在<h2>元素下添加代码,让浏览器显示URL地址中传入的name参数中设定的文字,显示次数等于URL地址中传入的numTimes参数中设定的次数。</p><p>修改后的Welcome.cshtml文件中的代码如代码清单3-5所示。</p><p>    代码清单3-5修改后的Welcome.cshtml文件</p><p>@{</p><p>    ViewBag.Title="Welcome";</p><p>}</p><p><h2</p> </div> <div class="page_view" id="pageContainer" oncontextmenu="return false"> <!--end documenttopic--> </div> <div id="outer_page_more" style="margin-bottom:20px;background-color:#FFF; border:solid 1px #ccc; box-shadow:none; "> <div class="inner_page_more" id="page_more" style="width: 920px; overflow:hidden; line-height: 30px;"> <div id="html-reader-go-more" class="banner-wrap more-btn-banner" style="padding: 30px 0px; width: 920px; position:relative;"> <div id="loading" style="text-align:center;width: 920px; padding-bottom:100px; font-size: 18px; line-height:40px;"> <img src="https://static.bdocx.com/images/loading.gif" alt="加载" /><br /> 文档加载中……请稍候!<br /> <a rel="nofollow" href="https://www.bdocx.com/doc/11879979.html" style="color:blue;text-decoration:underline;">如果长时间未打开,您也可以点击刷新试试。</a> </div> <p style="text-align: center; font-size: 18px;"> <span id="ftip">下载文档到电脑,查找使用更方便</span> </p> <!-- <p style="text-align: center; font-size: 14px;"> <b></b><span><b style="color: #ff0000">10</b> 金币</span></p> --> <p style="text-align: center; padding-top: 15px;"> <table style="margin:0px auto;"><tr><td> <a target="_parent" rel="nofollow" href="https://www.bdocx.com/down/11879979.html" class="ui-bz-btn-senior banner-download" style="padding: 5px 35px; font-size: 15px; text-decoration: none"><b style="color: #fff">下载</b></a></td><td>   <a rel="nofollow" target="_blank" href="https://www.bdocx.com/UserManage/Recharge.aspx?f=0&d=11879979" class="ui-bz-btn-senior2 banner-download" style="padding: 5px 35px; font-size: 15px; text-decoration: none"><b style="color: #fff">加入VIP,免费下载</b></a></td></tr> </table> </p> <p id="ntip" style="text-align: center; padding-top: 30px;"> <div id="ntip" class="banner-more-btn" style="text-align: center; width: 250px; display:block; margin:20px auto;" onclick="showmorepage()"> <span class="moreBtn goBtn" style="text-align: center"><span>还剩<span id="spanpage"></span>页未读,</span><span class="fc2e">继续阅读</span></span><p class="down-arrow goBtn"></p> </div> </div> </div> </div> <div class="works-manage-box shenshu"> <a rel="nofollow" href="javascript:jubao()" title="举报" class="fLeft works-manage-item works-manage-report"> <span class="inline-block ico "> <img src="https://static.bdocx.com/images/jubao.jpg" alt="举报"></span> <br> 举报</a> <a rel="nofollow" href="https://www.bdocx.com/UserManage/CopyrightAppeal.aspx?bid=11879979" title="版权申诉" class="fLeft works-manage-item works-manage-report" target="_blank" <span class="inline-block ico"> <img src="https://static.bdocx.com/images/bang_tan.gif" width="18" alt="版权申诉"></span> <br> 版权申诉</a> <a rel="nofollow" class="fLeft" style="display:block; padding-top:17px; padding-left:20px;font-size:14px;"> word格式文档无特别注明外均可编辑修改;预览文档经过压缩,下载后原文更清晰! </a> <a target="_parent" rel="nofollow" href="https://www.bdocx.com/down/11879979.html" title="点击进入下载" class="fr hover-none works-manage-download"> <em class="mr5">立即下载</em><span class="download-ico2 ico inline-block vertical-middle"></span></a> <input type="hidden" value="1332" id="tu_id"> </div> <dl class="works-intro gray2 cl pb10" style="border-bottom: none; padding-bottom: 0"> <dt class="fl">配套讲稿:</dt><dd class="fl wordwrap" style="color:#666666"><p>如PPT文件的首页显示<font color="#FF0000">word图标</font>,表示该PPT已包<font color="#FF0000">含配套word讲稿</font>。双击word图标可打开word文档。 </p></dd> <dt class="fl">特殊限制:</dt><dd class="fl wordwrap" style="color:#666666"><p>部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。</p></dd> <dt class="fl">关 键  词:</dt><dd class="fl wordwrap"> ASPMVC30 中文 入门 教程 </dd> </dl> <div class="works-intro gray2 c666"> <span class=" notice-ico"> <img alt="提示" src="https://static.bdocx.com/images/bang_tan.gif" style="padding-left: 24px; vertical-align: middle"></span>  冰豆网所有资源均是用户自行上传分享,仅供网友学习交流,未经上传用户书面授权,请勿作他用。 </div> <!--ta的资源--> <div class="mt10 related-pic-box" id="brandlist" style="height: 450px;"> <div class="works-comment-hd"> 该用户的其他资源 <a rel="nofollow" href="https://www.bdocx.com/user/289.html" class="fr" style="font-size: 12px; font-weight: normal" hidefocus="true" target="_blank">更多>></a></div> <div id="related-pic-list" class="related-pic-list cl" style="padding-left:12px; padding-right:0px;"> <ul> <li><h3><a href="https://www.bdocx.com/doc/11573746.html" target="_parent" title="铝散热器项目年度预算报告.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/1042b02a-de58-4221-9044-41eccc0cb08e/839db02275ae485da264f699598043c4.gif' alt="铝散热器项目年度预算报告.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 铝散热器项目年度预算报告.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573747.html" target="_parent" title="牛津上海版通用小学英语三年级上册Unit 12同步练习2II 卷.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/cd09324b-799f-42f1-910a-8d5d77334d45/1169cbeb1a61431c8368ab64ec6926a6.gif' alt="牛津上海版通用小学英语三年级上册Unit 12同步练习2II 卷.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 牛津上海版通用小学英语三年级上册Unit 12同步练习2II 卷.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573748.html" target="_parent" title="论我国私营企业员工激励机制.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/41854c13-f9dd-4d7b-a769-9cbbf37de070/02ab2e75bc8f443eabfc9b4a91c2821f.gif' alt="论我国私营企业员工激励机制.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 论我国私营企业员工激励机制.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573749.html" target="_parent" title="人教版五年级品德与社会上册全册教案.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/b9a570f9-17fb-47fe-824c-537325c5aa30/8c8077d9a65a4fccbe488676f232a622.gif' alt="人教版五年级品德与社会上册全册教案.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 人教版五年级品德与社会上册全册教案.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573750.html" target="_parent" title="开学啦国旗下讲话稿三分钟.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/aecefea1-8dfd-48d6-b803-f4ad0124b8f6/addb1168ef9544109f15dd366f787507.gif' alt="开学啦国旗下讲话稿三分钟.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 开学啦国旗下讲话稿三分钟.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573751.html" target="_parent" title="露天采矿学复习题.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/57f98da3-5d1e-4ee6-a9ab-92c460f28831/bb30dcffc12d444189197c4e906d5db2.gif' alt="露天采矿学复习题.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 露天采矿学复习题.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573752.html" target="_parent" title="六年级英语教师年度考核个人总结.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/120d29cb-fc8f-4366-b642-ce834c270586/6e26dce3a5a84ca5872cd06eebc659d9.gif' alt="六年级英语教师年度考核个人总结.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 六年级英语教师年度考核个人总结.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573753.html" target="_parent" title="某路站综合体项PC吊装施工方案.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/f5afdf6b-1598-4e83-acdc-e9ea5665a53a/9d741cf8c8dc40c38f311a1cb7138eed.gif' alt="某路站综合体项PC吊装施工方案.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 某路站综合体项PC吊装施工方案.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573754.html" target="_parent" title="人教版九年级历史上册期末考试试题一套.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/262b55ca-0064-4300-9d7d-ebf3fde785cd/0e5db3ccc76d4ed09c5a158d46009220.gif' alt="人教版九年级历史上册期末考试试题一套.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 人教版九年级历史上册期末考试试题一套.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573755.html" target="_parent" title="隆昌妇幼保健院.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/f1875ce3-8887-4fb3-b215-e2664daf0fd2/36e15b6e76ea44aeae1f39ae1d84383f.gif' alt="隆昌妇幼保健院.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 隆昌妇幼保健院.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573756.html" target="_parent" title="芦二矿抽采达标中长期规划.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/af8263f6-16e9-44d2-8805-e7f895c5f9b6/9119263bf5e84c7c927afe5da111c554.gif' alt="芦二矿抽采达标中长期规划.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 芦二矿抽采达标中长期规划.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573757.html" target="_parent" title="看拼音写词语.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/dfd0e5ee-e9f8-4596-8e51-565694ae1171/7c9e008d327f4065af4d0c30df1317b3.gif' alt="看拼音写词语.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 看拼音写词语.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573758.html" target="_parent" title="模拟磁盘调度算法系统的设计毕业设计.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/9a2fe501-1657-477c-a821-93bbc6de5a8c/f3b20a61a44d46b69b857bec77d3a46e.gif' alt="模拟磁盘调度算法系统的设计毕业设计.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 模拟磁盘调度算法系统的设计毕业设计.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573759.html" target="_parent" title="每周一条名言警句或一首诗词.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/f48d08f9-54e3-4402-8d65-bb1f64a39a20/039378ee6b3c4b219e50c325b1d690c0.gif' alt="每周一条名言警句或一首诗词.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 每周一条名言警句或一首诗词.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573760.html" target="_parent" title="棉花膜下滴灌示范工程设计总结报告.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/c158a02e-e4da-4fc2-8cca-e4b9bb56b322/b5376b6270554f9b990c01e2ac051ad4.gif' alt="棉花膜下滴灌示范工程设计总结报告.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 棉花膜下滴灌示范工程设计总结报告.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573761.html" target="_parent" title="九年级化学教案第十单元酸和碱教案新人教版.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/09fb558d-913b-43d9-8b67-59282ace08cc/dc891a00f1be4d3ca81e9e323e278959.gif' alt="九年级化学教案第十单元酸和碱教案新人教版.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 九年级化学教案第十单元酸和碱教案新人教版.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573762.html" target="_parent" title="宁波市水资源公报.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/6947aaef-8bc3-4dbd-9557-00d27609a9f8/93a06fa5e82445efbc5132d83302ef07.gif' alt="宁波市水资源公报.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 宁波市水资源公报.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573763.html" target="_parent" title="农业实用技术培训工作意见与农业局上半年工作总结范例两篇汇编.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/ef66ad0d-ee1a-4618-8d01-4a93db1337b1/0e94cdabf2df498c8d5a36854671c0e9.gif' alt="农业实用技术培训工作意见与农业局上半年工作总结范例两篇汇编.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 农业实用技术培训工作意见与农业局上半年工作总结范例两篇汇编.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573764.html" target="_parent" title="平行线的判定.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/c9138b2b-6e67-4692-b234-b0f5c2b23c80/5c8434a1928f483a9891947a2d228c3c.gif' alt="平行线的判定.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 平行线的判定.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573765.html" target="_parent" title="内部会计管理制度11成本核算制度.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/41e3d189-96cc-4ea7-bd04-e090cf70a3be/86190f16d2d94eaea3e2cce3da66e3c2.gif' alt="内部会计管理制度11成本核算制度.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 内部会计管理制度11成本核算制度.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573766.html" target="_parent" title="盘扣式脚手架支撑方案.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/03e24ab8-5b00-4bae-a5e1-5c6af287fc11/003174ca36d54915800fe0feb0e722ae.gif' alt="盘扣式脚手架支撑方案.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 盘扣式脚手架支撑方案.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573767.html" target="_parent" title="旅游规划模板.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/89818c7f-d5dd-47ef-b538-ce6d87e7e275/4d32e99ed42a4bdf98488f68658e1e94.gif' alt="旅游规划模板.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 旅游规划模板.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573768.html" target="_parent" title="煤矿大本大专毕业设计大采高综采工作面作业规程.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/d001ac94-bedd-48f7-b489-a5e491ef0bc8/3d505b25b59245f5ab69e416d08a7cd1.gif' alt="煤矿大本大专毕业设计大采高综采工作面作业规程.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 煤矿大本大专毕业设计大采高综采工作面作业规程.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573769.html" target="_parent" title="美学选择题整理课件资料.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/fc3815b9-d376-4243-a3eb-a258f609e6a7/180d8289df094c1e80af4cd85fed1626.gif' alt="美学选择题整理课件资料.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 美学选择题整理课件资料.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573770.html" target="_parent" title="名家论腹泻慢性肠炎.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/4da63883-5928-4327-8c70-c7ea202f2860/74a63705be754795a5ebda2fe332ffc3.gif' alt="名家论腹泻慢性肠炎.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 名家论腹泻慢性肠炎.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573771.html" target="_parent" title="宁夏银川市第一中学学年高一上学期期中考试地理试题解析解析版.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/c8aa9085-4b88-4c89-9c02-b9a9d80a3359/e9fae11149394049b5b8681569741967.gif' alt="宁夏银川市第一中学学年高一上学期期中考试地理试题解析解析版.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 宁夏银川市第一中学学年高一上学期期中考试地理试题解析解析版.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573772.html" target="_parent" title="年产吨精密纤维纸项目建设建议书.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/40e3fd9a-f625-4222-aee6-73128c66d6ba/aabae23e5a344c8b8b41db4c75be192b.gif' alt="年产吨精密纤维纸项目建设建议书.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 年产吨精密纤维纸项目建设建议书.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573773.html" target="_parent" title="农技推广中心工作总结.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/d66fe02f-2930-4e3a-9215-e667ba573536/831d198865b14ff6b95978a271b7ba18.gif' alt="农技推广中心工作总结.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 农技推广中心工作总结.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573774.html" target="_parent" title="彭宇案的法逻辑批判.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/ad22b94f-d11b-4143-9223-3051205585d3/f2cf6a06c21a4fcc958accbff709208b.gif' alt="彭宇案的法逻辑批判.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 彭宇案的法逻辑批判.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/11573775.html" target="_parent" title="宁夏仕奇房产网发布份房地产交易情况.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-3/19/7e9a1d1e-533a-4f9d-a9f8-335f61fa12fe/955e75fa5f374b168464d23d4c49a9e0.gif' alt="宁夏仕奇房产网发布份房地产交易情况.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 宁夏仕奇房产网发布份房地产交易情况.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/8642599.html" target="_parent" title="项目推荐书智能温控节能系统.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-2/1/da7cdb0e-5464-4da0-93d0-af6ca8b68cf4/bb60a97120d74d03807c985fe0d8c0b9.gif' alt="项目推荐书智能温控节能系统.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 项目推荐书智能温控节能系统.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/8642600.html" target="_parent" title="区县节日期间加强消防安全讲话稿与区发改委领导班子述职述廉报告汇编.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2023-2/1/dbde4919-809b-4cb8-9d4b-c03e7435eec7/f905e7ee28c84149affa7def3c224b1a.gif' alt="区县节日期间加强消防安全讲话稿与区发改委领导班子述职述廉报告汇编.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 区县节日期间加强消防安全讲话稿与区发改委领导班子述职述廉报告汇编.docx </a></h3></li> </ul> </div> </div> <div class="mt10 related-pic-box" id="Div1" style="height: 450px; overflow:hidden;"> <div class="works-comment-hd"> 猜你喜欢 </div> <div id="related-pic-list" class="related-pic-list cl" style="padding-left:12px; padding-right:0px;"> <ul> <li><h3><a href="https://www.bdocx.com/doc/14399943.html" target="_parent" title="人教新版七年级下册历史116课知识点归纳文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/4e0932b0-70da-4ba4-99eb-95d73af911f0/722c93461c3b4992b8e5172abe3cb125.gif' alt="人教新版七年级下册历史116课知识点归纳文档格式.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 人教新版七年级下册历史116课知识点归纳文档格式.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399944.html" target="_parent" title="手写劳动合同简易版Word文档下载推荐.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/0573eefc-832a-4157-98db-9e537f54051c/a9ee7c4f4d1e4be2add690e13aecebdb.gif' alt="手写劳动合同简易版Word文档下载推荐.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 手写劳动合同简易版Word文档下载推荐.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399945.html" target="_parent" title="DM工作手册2Word格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/d54e146c-7e35-4025-9ea1-dffd76602552/5311f20a59c841f58f6ba20b55b0b02b.gif' alt="DM工作手册2Word格式.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> DM工作手册2Word格式.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399946.html" target="_parent" title="差生家长会发言稿文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/f86745b4-a37d-4668-afb5-ef001d1ecf3a/0f8dbce1c23247e4ad8de915e05fa76e.gif' alt="差生家长会发言稿文档格式.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 差生家长会发言稿文档格式.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399947.html" target="_parent" title="日常安全巡查制度2Word文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/9a04af09-c43d-4324-a9bd-101e2d1a2b89/ce812e441f8846d09e75a589ee685074.gif' alt="日常安全巡查制度2Word文档格式.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 日常安全巡查制度2Word文档格式.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399948.html" target="_parent" title="仁爱版八年级英语上全册知识点归纳Word下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/3722e192-8e26-4786-a4bf-c1e5de7384f0/17b55409b171466293fec438f42e46a6.gif' alt="仁爱版八年级英语上全册知识点归纳Word下载.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 仁爱版八年级英语上全册知识点归纳Word下载.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399949.html" target="_parent" title="软件设计文档国家标准Word格式文档下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/1260c925-e061-42fd-b033-9379c38025a7/4917b2f890144122bd04dd67fe83e022.gif' alt="软件设计文档国家标准Word格式文档下载.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 软件设计文档国家标准Word格式文档下载.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399950.html" target="_parent" title="古典小说库Word文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/faeade68-81c2-454e-9743-f73437f62961/c5d7966808364db0acd86b33fd08978e.gif' alt="古典小说库Word文档格式.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 古典小说库Word文档格式.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399951.html" target="_parent" title="关于贯彻实施《中华人民共和国传染病防治法》的情况汇报Word下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/52996b58-9b56-4efc-b7ab-433ab1967c81/1d65dccac7aa4f7ebd401f856f36055b.gif' alt="关于贯彻实施《中华人民共和国传染病防治法》的情况汇报Word下载.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 关于贯彻实施《中华人民共和国传染病防治法》的情况汇报Word下载.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399952.html" target="_parent" title="高中语文5荆轲刺秦王第4课时教案新人教版必修5Word文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/7bef3dca-88f3-444b-beeb-d43c4b0aa323/b99659d5e905486aa2a624cd28fbbd39.gif' alt="高中语文5荆轲刺秦王第4课时教案新人教版必修5Word文档格式.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 高中语文5荆轲刺秦王第4课时教案新人教版必修5Word文档格式.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399953.html" target="_parent" title="(安全)自然灾害的预防与自救教案Word格式.doc"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/18bea48e-b8bd-47b5-8fde-698b90995bb0/a7365c0961e24c7aa1e569c759a6b8c2.gif' alt="(安全)自然灾害的预防与自救教案Word格式.doc" src="https://static.bdocx.com/images/filetype/d_word.png"> (安全)自然灾害的预防与自救教案Word格式.doc </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399954.html" target="_parent" title="苏教版五下劳动与技术教案Word文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/e3e19b9d-c017-4003-a737-4cf9535ea839/ccb8940d3bb348d28d60e30cfd1a2404.gif' alt="苏教版五下劳动与技术教案Word文档格式.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 苏教版五下劳动与技术教案Word文档格式.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399955.html" target="_parent" title="品牌陶瓷店五一劳动节开业人气互动活动策划方案Word下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/f98f4d75-486d-4f60-a7c0-957b262f54b5/ce15921fc0d34560b05c85a81726ae9c.gif' alt="品牌陶瓷店五一劳动节开业人气互动活动策划方案Word下载.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 品牌陶瓷店五一劳动节开业人气互动活动策划方案Word下载.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399956.html" target="_parent" title="《故乡》教案Word文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/d4dfc110-200f-4308-802c-728226460a1c/b8f6dea64604486eac5bb47cc3d855be.gif' alt="《故乡》教案Word文档格式.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 《故乡》教案Word文档格式.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399957.html" target="_parent" title="做生意广告语word范文 20页Word文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/7b08998c-28fe-439e-947b-9878e727b278/5c8d85d40f9844d48b101c753964b16e.gif' alt="做生意广告语word范文 20页Word文档格式.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 做生意广告语word范文 20页Word文档格式.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399958.html" target="_parent" title="苏教版一年级上册语文拼音练习题集Word格式文档下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/39c389f4-dad6-4bfe-b836-526e8745d453/f9fe4846494c426d9d336da51a8df3e2.gif' alt="苏教版一年级上册语文拼音练习题集Word格式文档下载.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 苏教版一年级上册语文拼音练习题集Word格式文档下载.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399959.html" target="_parent" title="普通高等学校招生全国统一考试 理综新课标Ⅰ卷 解析版正式版Word文档下载推荐.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/3b106208-3ad9-48bd-bfba-e9199d7ecd13/e7b3182ecee445c2b73876406ae5331a.gif' alt="普通高等学校招生全国统一考试 理综新课标Ⅰ卷 解析版正式版Word文档下载推荐.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 普通高等学校招生全国统一考试 理综新课标Ⅰ卷 解析版正式版Word文档下载推荐.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399960.html" target="_parent" title="个性搞笑逗比说说Word格式文档下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/13/a52ea351-8734-4f10-9e7a-19f4d0746cf0/e10678b6f97f4e2596b6e4352a99bf90.gif' alt="个性搞笑逗比说说Word格式文档下载.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 个性搞笑逗比说说Word格式文档下载.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/14399961.html" target="_parent" title="组织行为学复习笔记Word下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/22/7b229e56-1da4-408d-a6a6-753146fe401b/7375a7647e1f4d2b89e0911ab130ded9.gif' alt="组织行为学复习笔记Word下载.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 组织行为学复习笔记Word下载.docx </a></h3></li> </ul> </div> </div> <div class="mt10 works-comment"> <div class="works-comment-hd"> <span class="font-tahoma">关于本文</div> <div style="line-height: 25px; padding: 10px 20px;"> 本文标题:ASPMVC30中文入门级教程.docx<br /> 链接地址:<a rel="nofollow" href="https://www.bdocx.com/doc/11879979.html">https://www.bdocx.com/doc/11879979.html</a><br /> </div> </div> </div> <div class="boxright" id="boxright" > <div class="fr detail-aside" id="Div11" style="width:290px;"> <div class="box hot-keywords mt10" id="relatebox"> <div class="boxHd" style="padding-bottom: 0px;"> <em></em><span>相关资源</span> <a rel="nofollow" href="javascript:;" onclick="window.open('https://www.bdocx.com/search.html?q=ASPMVC30%e4%b8%ad%e6%96%87%e5%85%a5%e9%97%a8%e7%ba%a7%e6%95%99%e7%a8%8b.docx');" >更多</a> </div> <div id="author-works-list" class="author-works-list bgF"> <ul> <li><img alt="生理学课件全套PPT课件.ppt" class="ppt" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30848081.html" title="生理学课件全套PPT课件.ppt">生理学课件全套PPT课件.ppt</a> </li><li><img alt="社会心理学(全)金盛华主编ppt课件.ppt" class="ppt" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30848069.html" title="社会心理学(全)金盛华主编ppt课件.ppt">社会心理学(全)金盛华主编ppt课件.ppt</a> </li><li><img alt="螺丝基本知识培训.ppt" class="ppt" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30848055.html" title="螺丝基本知识培训.ppt">螺丝基本知识培训.ppt</a> </li><li><img alt="行测-逻辑推理课件.ppt" class="ppt" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30847796.html" title="行测-逻辑推理课件.ppt">行测-逻辑推理课件.ppt</a> </li><li><img alt="密封件基础知识.ppt" class="ppt" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30847795.html" title="密封件基础知识.ppt">密封件基础知识.ppt</a> </li><li><img alt="曼昆经济学原理第5版宏观PPT全.ppt" class="ppt" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30847794.html" title="曼昆经济学原理第5版宏观PPT全.ppt">曼昆经济学原理第5版宏观PPT全.ppt</a> </li><li><img alt="第09章-物料需求计划(MRP)的编制.ppt" class="ppt" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30847793.html" title="第09章-物料需求计划(MRP)的编制.ppt">第09章-物料需求计划(MRP)的编制.ppt</a> </li><li><img alt="2009年江苏造价员考试安装答案(完整版).xls" class="xls" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30847537.html" title="2009年江苏造价员考试安装答案(完整版).xls">2009年江苏造价员考试安装答案(完整版).xls</a> </li><li><img alt="中药香囊制作(中药学基础课件).pptx" class="pptx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30846274.html" title="中药香囊制作(中药学基础课件).pptx">中药香囊制作(中药学基础课件).pptx</a> </li><li><img alt="短视频创作实战-短视频内容策划..pptx" class="pptx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30846273.html" title="短视频创作实战-短视频内容策划..pptx">短视频创作实战-短视频内容策划..pptx</a> </li></div> </ul> </div> <div class="box hot-keywords mt10" id="box3" style="overflow: hidden;width: 288px; border:solid 1px #dedede;"> <div class="boxHd" style="border: none;padding-bottom: 0px;"> <em></em><span>相关搜索</span> </div> <input name="ctl00$Content$hiddenCategoryID" type="hidden" id="Content_hiddenCategoryID" value="89" /> <div class="hot-keywords-list"> <a rel="nofollow" href="javascript:;" onclick="window.open('https://www.bdocx.com/search.html?q=ASPMVC30');" class="tag-item ico" title="ASPMVC30" hidefocus="true"><span class="ico"><em> ASPMVC30</em></span></a> <a rel="nofollow" href="javascript:;" onclick="window.open('https://www.bdocx.com/search.html?q=%e4%b8%ad%e6%96%87');" class="tag-item ico" title="中文" hidefocus="true"><span class="ico"><em> 中文</em></span></a> <a rel="nofollow" href="javascript:;" onclick="window.open('https://www.bdocx.com/search.html?q=%e5%85%a5%e9%97%a8');" class="tag-item ico" title="入门" hidefocus="true"><span class="ico"><em> 入门</em></span></a> <a rel="nofollow" href="javascript:;" onclick="window.open('https://www.bdocx.com/search.html?q=%e6%95%99%e7%a8%8b');" class="tag-item ico" title="教程" hidefocus="true"><span class="ico"><em> 教程</em></span></a> </div> </div> <div class="job-recommend"> <h3 class="job-title"><svg t="1586228347294" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="https://www.w3.org/2000/svg" p-id="7996" width="20" height="20"><path d="M870 154c-13.1-13.1-30.4-21.8-49.8-24L527.8 97.5c-25.2-2.8-50.3 6-68.3 24l-326 326c-48.7 48.7-48.7 128.5 0 177.2l265.8 265.8c48.7 48.7 128.5 48.7 177.2 0l326-326c17.9-17.9 26.8-43.1 24-68.3L894 203.8c-2.2-19.4-10.9-36.8-24-49.8z m3.2 381.1l-326 326c-15.7 15.7-36.8 24.4-59.3 24.4s-43.5-8.7-59.3-24.4L162.9 595.3c-15.7-15.7-24.4-36.8-24.4-59.3s8.7-43.5 24.4-59.2l326-326c7.9-7.9 18.5-12.3 29.7-12.3 1.5 0 3.1 0.1 4.6 0.3l292.4 32.5c9.6 1.1 18.2 5.2 25 12 6.8 6.8 11 15.5 12.1 25.1l32.5 292.3c1.5 12.8-2.9 25.3-12 34.4z" p-id="7997" fill="#ea986c"></path><path d="M723.3 217.7c-45.8 0-83 37.2-83 83s37.2 83 83 83 83-37.2 83-83c0-45.9-37.1-83-83-83z m0 124.5c-22.9 0-41.5-18.6-41.5-41.5s18.6-41.5 41.5-41.5 41.5 18.6 41.5 41.5-18.6 41.5-41.5 41.5z" p-id="7998" fill="#ea986c"></path></svg> 热门标签</h3> <div class="job-recommend-area"> <ul class="taglist--inline multi"> <li class="tagPopup"><a target="_parent" class="tag tag1" href="https://www.bdocx.com/mark/20niangaoxiaogong.html">20年高校工</a></li> <li class="tagPopup"><a target="_parent" class="tag tag2" href="https://www.bdocx.com/mark/wenyiwengaodinghehuorenlushi.html">文一文搞定合伙人律师</a></li> <li class="tagPopup"><a target="_parent" class="tag tag3" href="https://www.bdocx.com/mark/huanjingchuangshepingbihuodong.html">环境创设评比活动</a></li> <li class="tagPopup"><a target="_parent" class="tag tag4" href="https://www.bdocx.com/mark/yingyujianglaiwancheng.html">英语将来完成</a></li> <li class="tagPopup"><a target="_parent" class="tag tag0" href="https://www.bdocx.com/mark/shouhoukefugeren.html">售后客服个人</a></li> <li class="tagPopup"><a target="_parent" class="tag tag1" href="https://www.bdocx.com/mark/jingbianshashijiagongsheji.html">精编砂石加工设计</a></li> <li class="tagPopup"><a target="_parent" class="tag tag2" href="https://www.bdocx.com/mark/jiegaokaohuaxueelunfuxitixingtexunjingbian40tihuaxueshiyanjichudaanjiexigaokaohuaxue.html">届高考化学二轮复习题型特训精编40题化学实验基础答案+解析高考化学</a></li> <li class="tagPopup"><a target="_parent" class="tag tag3" href="https://www.bdocx.com/mark/jiudianwaipaigongchengshigongfangan.html">酒店外排工程施工方案</a></li> <li class="tagPopup"><a target="_parent" class="tag tag4" href="https://www.bdocx.com/mark/huanledeyuandanlianhuanhuilianhuanhuizuowen350zichuyijishihuanleyuandan.html">欢乐的元旦联欢会联欢会作文350字初一记事欢乐元旦</a></li> <li class="tagPopup"><a target="_parent" class="tag tag0" href="https://www.bdocx.com/mark/huwaidaohangrumenjingtong.html">户外导航入门精通</a></li> </ul> </div> </div> </div> </div> </div> </div> <script src="https://static.bdocx.com/js/artDialog-5.0.3/artDialog.min.js"></script> </div> <div class="tempdiv cssnone" style="line-height:0px;height:0px; overflow:hidden;"> </div> <script> var doctitle = "ASPMVC30中文入门级教程.docx"; Encoder.EncodeType = "entity"; var nodecode = '0000900001'; var adhtml = ""; var adarray = Encoder.htmlDecode(adhtml); initWidth(); var product_id = "11879979"; var product_code = "11879979"; var mtp = 20; var fCount = 88; var stp = 1; var lmt = 20; var ForceFreepage = parseInt('20'); if(lmt > ForceFreepage)lmt = ForceFreepage; var mhs = 595 * 841; var mhi = new Array("342774"); var mhls = new Array("0"); var mfvs = new Array("0"); var sw = 595; var sh = 841; var IsDealSwfSize = sw > 0; var minwidth=920; var BookMarkPage = parseInt('1'); var adpagecount = parseInt("2"); var defaultShowPage =parseInt( "5"); var defaultShowPage2 =defaultShowPage; var leftfilecount = fCount - defaultShowPage; if(leftfilecount<0)leftfilecount=0; var scorename = "金币"; var LimitText = '10'; var LimitButtonText = '现在购买'; var DocScoreDownLoad = parseFloat('10'); var ReadLimitDays = "365"; var bookrelArray = ""; var url_root = "https://www.bdocx.com/"; var goumaiico = 'images/xiazai_1.gif'; var lmtext = ''; lmtext = '<div class="inner_page_more" id="page_more" style="width:930px; height:260px; line-height:30px;">' +'<div id="html-reader-go-more" class="banner-wrap more-btn-banner" style="padding-top:40px; width:930px;">' +'<p style="text-align:center;font-size:18px;">亲,很抱歉,此页已超出免费预览范围啦!<br/>如果喜欢就下载吧,价低环保!</p><p style="text-align:center;font-size:14px;">' +'<b></b><span><b style="color:#ff0000">10</b> 金币</span>' +'</p><p style="text-align:center; padding-top:30px;">' +'<a target="_parent" rel="nofollow" href="https://www.bdocx.com/down/11879979.html" class="ui-bz-btn-senior banner-download" style="padding:5px 35px; font-size:15px; text-decoration:none">' +'<b style="color:#fff">立即下载</b></a>' +'   <a target="_blank" href="https://www.bdocx.com/UserManage/Recharge.aspx?f=0&d=11879979"class="ui-bz-btn-senior2 banner-download" style="padding:5px 35px; font-size:15px; text-decoration:none">' +'<b style="color:#fff">加入VIP,免费下载</b></a>' +'</p></div></div> '; var curtotalpage = defaultShowPage; function showmorepage() { var from = curtotalpage+1; var leftcount = ((mtp - curtotalpage)<defaultShowPage?mtp:(curtotalpage+defaultShowPage)); for (var i = from; i <=leftcount; i++) { Viewer._Addpage(i); curtotalpage+=1; } leftfilecount = mtp - (curtotalpage); Viewer._dfsp=curtotalpage; if(from<leftcount) { Viewer.InitAD_left(from,leftcount); showAd(); } if(leftfilecount<=0) { if("#ftip")$("#ftip").text("本资源只提供20页预览,全部文档请下载后查看!喜欢就下载吧,查找使用更方便"); if($("#nftip"))$("#nftip").html("此文档不允许下载,在线阅读到最后一页了。"); $("#ntip").hide(); $("#ntip2").hide(); if($("#btnvip"))$("#btnvip").html("VIP查看完整版"); if("#ftip3")$("#ftip3").text(fCount-curtotalpage); if($("#ftip2"))$("#ftip2").show(); if(fCount-curtotalpage <=0) { if("#ftip2")$("#ftip2").text("预览完成,如需下载请加入VIP"); if($("#btnvip"))$("#btnvip").html("VIP免费下载"); } } var st = ($(this).scrollTop()); $(this).scrollTop(st +1); $("#spanpage").text(fCount-curtotalpage); } function showmoretopage(to) { var from = curtotalpage+1; var leftcount = ((mtp - curtotalpage)<defaultShowPage?mtp:(curtotalpage+defaultShowPage)); if(to > leftcount)leftcount=to; for (var i = from; i <=leftcount; i++) { Viewer._Addpage(i); curtotalpage+=1; } leftfilecount = mtp - (curtotalpage); Viewer._dfsp=curtotalpage; if(from<leftcount) { Viewer.InitAD_left(from,leftcount); showAd(); } if(leftfilecount<=0) { if("#ftip")$("#ftip").text("本资源只提供20页预览,全部文档请下载后查看!喜欢就下载吧,查找使用更方便"); if($("#nftip"))$("#nftip").html("此文档不允许下载,在线阅读到最后一页了。"); $("#ntip").hide(); $("#ntip2").hide(); if($("#btnvip"))$("#btnvip").html("VIP查看完整版"); if("#ftip3")$("#ftip3").text(fCount-curtotalpage); if($("#ftip2"))$("#ftip2").show(); if(fCount-curtotalpage <=0) { if("#ftip2")$("#ftip2").text("预览完成,如需下载请加入VIP"); if($("#btnvip"))$("#btnvip").html("VIP免费下载"); } } $("#spanpage").text(fCount-curtotalpage); } function adss() {var st = ($(this).scrollTop())-2; $(this).scrollTop(st);} function showAd() { $(".addivp").each(function(){ var adindex = ($(this).attr("link")); var adid = ($(this).attr("id")); document.getElementById(adid).innerHTML = document.getElementById("adpre" + adindex).outerHTML; $("#adpre" + adindex).css({ margin: "0px auto" }); }); } </script> <script> var operateType = 1; var uid = "0"; var DocID = "11879979"; var zw = 595; var zh = 841; var zrate = (zw==0||zh==0)?1:(zh/zw); var isplay = 0; var width = "830"; var height = getClientHeight(); if (height < 560) height = 560; height = ('False' == 'True' ? 570 : height); var scorename = "金币"; var params = {}; </script> <script src="https://static.bdocx.com/master/view/view2.js"></script> <script> $(document).ready(function() { initPage(); $("#loading").hide(); $("#spanpage").text(leftfilecount); var lf = mtp - (defaultShowPage); if(lf<=0) { if("#ftip")$("#ftip").text("本资源只提供20页预览,全部文档请下载后查看!喜欢就下载吧,查找使用更方便"); if($("#nftip"))$("#nftip").html("此文档不允许下载,在线阅读到最后一页了。"); $("#ntip").hide(); $("#ntip2").hide(); if($("#btnvip"))$("#btnvip").html("VIP查看完整版"); if("#ftip3")$("#ftip3").text(fCount-curtotalpage); if($("#ftip2"))$("#ftip2").show(); if(fCount-curtotalpage <=0) { if("#ftip2")$("#ftip2").text("预览完成,如需下载请加入VIP"); if($("#btnvip"))$("#btnvip").html("VIP免费下载"); } } window.setTimeout( function () { try { if(BookMarkPage == 1) { $(this).scrollTop(0); } else { Viewer._GotoPage(BookMarkPage); } }catch(e){} },500); if(defaultShowPage>0){ $("#outer_page_more").show();}else{ $("#outer_page_more").hide();} }); </script> <script> $('body').bind('contextmenu', function() {return false;}); $('body').bind("selectstart",function(){return false;}); </script> <div class="cssnone"> <iframe title = "来源分析" src="https://www.bdocx.com/BookRead.aspx?id=FmSa3u81Ec5kdAtkWhRaxQ%3d%3d&parto=E8rEuMFWfhms%2fJgvTj2Lqks5zXdXIllHzf%2ftF10jN0LhOiDsXOcf8WV6Qlk%2bokE9vYlg1gLIWVyfXbVafHpQ45hmh2ZYBTMIVHaJ2BqtjzNgkzLVwmNU%2fvIdmilEUh%2fUiwkGYUeIW3%2bm3EITyk06VUMmnGhIDuL9gTJUWItpC97YDtUHl9txLYZteQ3x%2ba4tbeyOUPFQWqCWZZviIYUXmVijQjpeX%2biD" frameborder="0" style="width: 0px; height: 0px"> </iframe> </div> <!-- JiaThis Button END --> <span id="LabelScript"></span> </div> </div> <div class="getwximg_div" style="display:none;"> </div> <script> var isloginto = false; function initwxlogin() { var arr = $(".getwximg_div"); for (var i = 0; i < arr.length; i++) { (function (index) { var url = "https://www.bdocx.com/header.aspx?getcate=100"; $.get(url + "&t=" + (new Date()).valueOf(), function (d) { try { arr.eq(index).empty().html(d); } catch (e) { } try { arr.html(d); } catch (e) { } }); })(i); } } </script> <script>function popLogin() { window.location.href = '/login.aspx?returl=https%3a%2f%2fwww.bdocx.com%2fView_wj.aspx%3fid%3d11879979'; return; }</script> <script type="text/javascript"> var objjubao = null; function jubao() { var html = '<iframe src="https://www.bdocx.com/UserManage/ReportBack.aspx?id=11879979&url=rkm56XE mSTpX60 NSICJJzJeI0SxkjuKOfuUZPhKhBZYgJ8LvxX3cLNBqGVZ Gg" scrolling="no" frameborder="0" style="width: 600px; height: 420px"></iframe>'; objjubao = art.dialog({ title: '非法内容有奖举报', content: html, close: Closejubao, width: '700', height: '470', skin: 'blue', lock: true, background: '#666', opacity: .6, duration: 300, fixed: true, left: '50%', top: '38.2%', zIndex: 1987, resize: true, drag: true }); } function Closejubao() { objjubao.close(); } </script> <!--foot--> <div class="bg_100 foot_nav_bg" style=" min-width:1200px;"> <div class="foot_nav"> <a href="https://www.bdocx.com/h-33.html" target="_blank" >关于我们</a> - <a href="https://www.bdocx.com/h-34.html" target="_blank" >网站声明</a> - <a href="https://www.bdocx.com/h-35.html" target="_blank" > 网站地图</a> - <a href="https://www.bdocx.com/sitemap.html" target="_blank" > 资源地图</a> - <a href="https://www.bdocx.com/friend.aspx" target="_blank" >友情链接</a> - <a rel="nofollow" target="_blank" href="https://wpa.qq.com/msgrd?v=3&uin=307372695&site=qq&menu=yes" >网站客服</a> - <a rel="nofollow" href="https://www.bdocx.com/h-38.html" target="_blank" >联系我们</a> </div> </div> <div class="bg_100 siteInner_bg" style=" min-width:1200px;"> <div class="siteInner"> <p style="text-align: center;">copyright@ 2008-2022 冰点文档网站版权所有</p><p style="text-align: center;">经营许可证编号:<a href="http://beian.miit.gov.cn/" target="_blank">鄂ICP备2022015515号-1</a></p><script>var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?e215eb657a3f46c69d47e590e96ccbdd"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })();</script><script>(function(){ var el = document.createElement("script"); el.src = "https://lf1-cdn-tos.bytegoofy.com/goofy/ttzz/push.js?46796c789de3003a5113847b2981b93831ac52d6d1cb31ddda7500aa017814283d72cd14f8a76432df3935ab77ec54f830517b3cb210f7fd334f50ccb772134a"; el.id = "ttzz"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(el, s); })(window)</script> </div> </div> <!--foot end--> <!-- 代码部分begin --> <div class="QQ_S" style="height: auto;position:fixed;right: 0px;bottom: 20px; top:auto;"> <div class="Q_top" onclick="HideFoot()"> <span class="signi"></span>收起</div> <div class="Q_botm"> <div class="Q_pic"> <div class="Q_pic_hide"> <a rel="nofollow" href="https://wpa.qq.com/msgrd?v=3&uin=307372695&site=qq&menu=yes" target="_blank" title="在线客服" ><span class="hide_pic"></span>在线客服</a> </div> </div> <div class="Q_anser"> <div class="Q_anser_hide"><a rel="nofollow" target="_blank" href="http://mail.qq.com/cgi-bin/qm_share?t=qm_mailme&email=307372695@qq.com" title="意见反馈"> <span class="hide_pic1"></span>意见反馈 </a> </div> </div> <div class="Q_sign"> <div class="Q_sign_hide" onclick="backToTop();"><a rel="nofollow" href="javascript:void(0)" title="返回顶部"><span class="hide_pic2"></span>返回顶部 </a></div> </div> </div> </div> <div class="QQ_S1"> <div class="Q_top1" onclick="ShowFoot()"> <span class="signj"></span>展开</div> <div class="Q_botm1"> <div class="Q_pic1"> <div class="Q_pic1_hide"> <a rel="nofollow" target="_blank" href="https://wpa.qq.com/msgrd?v=3&uin=307372695&site=qq&menu=yes" > <span class="hide_pic3"></span>QQ交谈</a></div> </div> <div class="Q_sign1"> <div class="Q_sign1_hide" onclick="backToTop();"><a rel="nofollow" href="javascript:void(0)">返回顶部</a></div> </div> </div> </div> <!-- 代码部分end --> <script type="text/javascript" src="https://static.bdocx.com/js/lanrenzhijia.js"></script> <script type="text/javascript" src="https://static.bdocx.com/js/jquery.lazyload.js"></script> <script type="text/javascript" charset="utf-8"> $("img.lazys").lazyload({ threshold: 200, effect: "fadeIn" }); </script> <script type="text/javascript" src="https://static.bdocx.com/umeditor/xss.js"></script> </body> </html>