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

类型ASPMVC30学习资料.docx

  • 文档编号:4680480
  • 上传时间:2022-12-07
  • 格式: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>Welcome</h2></p><p><ul></p><p>@for(inti=0;i<ViewBag.NumTimes;i++)</p><p>{</p><p> </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/4680480.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">3</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/4680480.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=4680480" 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=4680480" 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/4680480.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/288.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/578461.html" target="_parent" title="《雷雨》中的蘩漪人物形象分析 1.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/37339fc3-33aa-427f-b45e-0d546ec87dc2/afd98d3f064449f6bad3bb617b9f2d27.gif' alt="《雷雨》中的蘩漪人物形象分析 1.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 《雷雨》中的蘩漪人物形象分析 1.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578533.html" target="_parent" title="《经济法基础》第三章章节练习与答案解析.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/ef408586-82ef-4c51-a77d-ba8002e04ac8/86f46cb1f27c494a8f52da255de50496.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/578559.html" target="_parent" title="安徽省合肥市包河区卫生健康系统招聘试题及答案解析.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/10199d0f-cffc-4e35-a2a5-4b79debd588a/33c544c9931a4b47b28691c5c143ac6e.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/578591.html" target="_parent" title="《河中石兽》复习过程.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/8dd217d4-d1cd-4e42-ae17-0837c21aa7d8/a78e5811a03745e79171fddf718e1715.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/578592.html" target="_parent" title="版二级建造师《公路工程管理与实务》考前检测 附答案.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/c5716a3b-845b-4e73-b36f-cb22ef13959d/ab477a5b8057484f8bb5ad66b47b65e1.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/578594.html" target="_parent" title="保密安全制度监理组5篇修改版.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/247c7416-4acb-482b-9019-201fc165b83d/380f1aded5eb4be3858a4dedde32eaff.gif' alt="保密安全制度监理组5篇修改版.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 保密安全制度监理组5篇修改版.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578597.html" target="_parent" title="北师大版届九年级上学期期末考试英语试题I卷.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/73f2806e-99ff-47ff-aca3-4fab4fcfd0fb/a3353ddb8c9d45a09a64b0a06cc9f1b6.gif' alt="北师大版届九年级上学期期末考试英语试题I卷.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 北师大版届九年级上学期期末考试英语试题I卷.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578656.html" target="_parent" title="PACE产品及周期优化法系统结构复习课程.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/3707b73f-7c33-4995-a06e-1077643812bd/5d4db2dacf1947099fc4e57b509ce15d.gif' alt="PACE产品及周期优化法系统结构复习课程.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> PACE产品及周期优化法系统结构复习课程.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578681.html" target="_parent" title="常规变电站常规设计.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/91926176-d26e-46dc-8ee7-a69230d8ca0a/61eeb258dced4c4886eb97f3c664e282.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/578684.html" target="_parent" title="初三欧姆定律计算题题型整理.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/f9890006-0635-4619-8387-ec36c0f4637a/18342d0a83de4be9a6098555081094a8.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/578688.html" target="_parent" title="《测绘管理与法律法规》模拟试题一附答案.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/7974bf89-ad29-428a-8f00-d14ca5faf3a3/0dd247fc28c24dc681f1c645bedd88a1.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/578692.html" target="_parent" title="2测风工岗位练兵技术比武.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/fb6dbb3a-74a4-4590-a782-47eb516af64c/69b441440891494181d428369e8fcf50.gif' alt="2测风工岗位练兵技术比武.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 2测风工岗位练兵技术比武.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578712.html" target="_parent" title="《小学语文不同课型的教学模式参考》1.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/705393c2-a23a-4a36-8dfd-fc6a24e548b9/b53b46e4fb094cec9a37d6a0d92a444b.gif' alt="《小学语文不同课型的教学模式参考》1.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 《小学语文不同课型的教学模式参考》1.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578714.html" target="_parent" title="15高考宁夏英语及答案教学内容.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/1f0f432a-a8ff-46f1-ae05-219a9979b23b/0ad6c06f91cc4688a8013b55c86c93c3.gif' alt="15高考宁夏英语及答案教学内容.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 15高考宁夏英语及答案教学内容.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578716.html" target="_parent" title="ABS圆形笔筒课程设计说明书.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/f1f7d021-f5b6-43a4-a734-9b5f10ca1865/4d0955dae20b4766b9171d6a3e42cc26.gif' alt="ABS圆形笔筒课程设计说明书.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> ABS圆形笔筒课程设计说明书.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578718.html" target="_parent" title="c语言程序填空题.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/822aae12-403f-49ca-adfa-62b61ddb2bc5/9a074c781a014eb99b286195e934597b.gif' alt="c语言程序填空题.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> c语言程序填空题.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578721.html" target="_parent" title="茶艺师高级三级教学计划大纲.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/c19e3dcb-73a5-45b8-b56c-062a4fbb2a9c/6ad758a60b3b40deb59977361e4b5d21.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/578724.html" target="_parent" title="场平土石方工程施工项目组织设计.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/23cddcc7-efa7-46c4-a244-e6add6680870/e568134bf00b4619870e8bae7bf2590f.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/578760.html" target="_parent" title="《人力资源管理》期末试题及答案教学内容.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/f0568d60-3a69-4c36-b92e-7de2582d7956/8c7e10b58cb746ed91248c642f321228.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/578763.html" target="_parent" title="《河南省高等学校教师实验人员中高级专业技术职务任职资格申报评审条件试行.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/93f7e5b1-8f1a-4b7b-a7a8-fc653bb1970a/b265dafe0059427eac3429e6c2e82c53.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/578767.html" target="_parent" title="01钢结构制作施工工艺标准文档.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/b4ffd68a-48c8-4d0f-95cc-ac788b3b64fe/11bb2ef226c54a78b16f4206c5bdbc46.gif' alt="01钢结构制作施工工艺标准文档.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 01钢结构制作施工工艺标准文档.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578769.html" target="_parent" title="IIR数字滤波器的设计流程图.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/972e9792-1ec7-496b-b92a-b1f26e60f2da/7f56d2e7d19a44cdaeb96b4e83820a6e.gif' alt="IIR数字滤波器的设计流程图.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> IIR数字滤波器的设计流程图.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578771.html" target="_parent" title="005纺丝作业指导书.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/843684d5-4bfc-4b63-a7b7-908419cb9c42/517d6332f11346f6a87d4d9fef3af30d.gif' alt="005纺丝作业指导书.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 005纺丝作业指导书.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578778.html" target="_parent" title="1991高考化学试题.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/d1d77ac9-239a-4fd1-a50f-26a56b6c5bd4/d810c31680054b36bf40c3c03188045d.gif' alt="1991高考化学试题.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 1991高考化学试题.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578780.html" target="_parent" title="GMP审核检查表与审核员指南.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/6231a673-574f-4fba-9495-982efb94cb6a/f2fea813768640bda70b860437b06698.gif' alt="GMP审核检查表与审核员指南.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> GMP审核检查表与审核员指南.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578784.html" target="_parent" title="成本会计试题二.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/70d1c551-0927-4cef-8f3d-20b037346e76/4e715153e677465593ae410aeac263d4.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/578785.html" target="_parent" title="14001讲师心态调整培训讲座讲义体验版共14页文档.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/60a11d34-8b60-48e7-8309-b9e3b567f90f/bcd3f174c95d414ab9e00add71e0c541.gif' alt="14001讲师心态调整培训讲座讲义体验版共14页文档.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 14001讲师心态调整培训讲座讲义体验版共14页文档.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578789.html" target="_parent" title="cpld矩阵键盘.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/c9368a56-7269-4800-9c0b-ad5cbb6d7e26/8bc503e10f584d1aabe00c0a7d4977ee.gif' alt="cpld矩阵键盘.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> cpld矩阵键盘.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578790.html" target="_parent" title="《金融服务营销》.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/5dfd32c8-8c25-4ca3-a994-21b11293ab6c/17a924ec68f74a0ca7a61cf69b654070.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/578791.html" target="_parent" title="NHR100过程校验仪140408.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/7cac1ff0-2930-4a60-81f2-e2f68859cc44/c1877903bf6b470a907be85c039a3bd1.gif' alt="NHR100过程校验仪140408.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> NHR100过程校验仪140408.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578796.html" target="_parent" title="Q+ Web 改版设计小结.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/c4dff4e5-3d7b-412f-b482-c22cf70a990f/4f1da61b0d3d47949777a35d435ee274.gif' alt="Q+ Web 改版设计小结.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> Q+ Web 改版设计小结.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/578805.html" target="_parent" title="八年级上册古诗词鉴赏含参考答案.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/11/6a1da971-339c-4036-bb2e-49def4279180/5c57705db6874879937fcd8c3b8bb887.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/15139133.html" target="_parent" title="方波和三角波发生器电路文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/08b435fb-3fb1-4dfa-9f95-66c4dec13846/cd29d5ded3194b4fac87d1ef8dd6ffed.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/15139134.html" target="_parent" title="部编版二年级下册语文《一匹出色的马》课件三篇Word格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/51a303b3-b0f2-40fe-9162-6b72f017d014/20cb3fb847214da7ab74d26da22a688f.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/15139135.html" target="_parent" title="房地产项目转让通用版Word下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/138ae785-74a3-4c0e-aa54-0bbaa8daf67f/ab24666277a44f48b1f0df3ce0d0b155.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/15139136.html" target="_parent" title="电子技能实训心得体会Word文档下载推荐.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/f79db3c9-cc0b-4d23-9a15-9bfdbf809147/49598041e4ee438893fd78a051157e62.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/15139137.html" target="_parent" title="房屋租赁的有关法律问题Word下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/c3315c7c-e84a-4f59-abae-ac2fc7e1bf3a/c6a0c3a52f5d433f8e752020e46e2054.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/15139138.html" target="_parent" title="定时闹钟单片机课程设计报告书文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/ccb766ca-097d-4d73-9c24-687ae54e3a38/77640b62bd3f404f884254a5f3671133.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/15139139.html" target="_parent" title="服务员工作个人总结范文五篇Word文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/ae0e9213-050a-489b-9bba-d1417d6055c0/88451429735645c1bde40c194cec6837.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/15139140.html" target="_parent" title="采购工作计划范文汇编7篇汇编Word文档下载推荐.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/1504ad8b-8bff-409b-b367-5e69ed94adae/de7946a052d943edad5977dc3d3069d5.gif' alt="采购工作计划范文汇编7篇汇编Word文档下载推荐.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 采购工作计划范文汇编7篇汇编Word文档下载推荐.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/15139141.html" target="_parent" title="高中生物苏教版必修二 精品导学案第5章 第1节 生物进化理论ⅡWord文件下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/c3199ef7-f2c9-4801-88f2-b9ae5acc282b/71c43cb0dfaf43e8b12bb64c9ccf4d8a.gif' alt="高中生物苏教版必修二 精品导学案第5章 第1节 生物进化理论ⅡWord文件下载.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 高中生物苏教版必修二 精品导学案第5章 第1节 生物进化理论ⅡWord文件下载.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/15139142.html" target="_parent" title="动感地带品牌策划案Word文件下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/87124ae6-4697-4179-b4d9-de8f8017b4e7/8f29fa7e286341cba500473262632f49.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/15139143.html" target="_parent" title="公路工程管理与实务真题及答案文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/f2a09353-9d2f-4981-a209-e8fb6aa9e4ef/d2d194cbbe8344ce902a53779211d95d.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/15139144.html" target="_parent" title="儿童发展心理学特色课程教案Word下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/ab4a7670-c828-4d67-be1d-0c6f0a9f6f38/7cd60f01550d440bba4bdeb010056912.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/15139145.html" target="_parent" title="分子生物学常用技术习题Word文件下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/93281237-59fd-426c-bbe6-91a3487647af/ecff95caaf044304a101ec7003368e1e.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/15139146.html" target="_parent" title="感恩资助主题演讲稿docWord格式文档下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/ac1a6c00-c1e3-4e25-ba84-bf59133f7302/01e5ef7f5c8d4e0295edb7ce59d2cd80.gif' alt="感恩资助主题演讲稿docWord格式文档下载.docx" src="https://static.bdocx.com/images/filetype/d_word.png"> 感恩资助主题演讲稿docWord格式文档下载.docx </a></h3></li> <li><h3><a href="https://www.bdocx.com/doc/15139147.html" target="_parent" title="电缆隧道施工专项方案Word文件下载.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/ab243f18-a437-45ac-9240-ac15a6d4048c/34b1247755ab413f83dd95d12c848aab.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/15139148.html" target="_parent" title="费用会计工作职责Word文档下载推荐.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/20475bfa-342c-4a6a-8391-58414824b36a/10a6d9128cf241e9b5746988a6543bc6.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/15139149.html" target="_parent" title="地下室顶板上人货梯方案Word文档格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/5b130bb9-d80a-4ab0-8bbf-a0ef60d65a8b/f4f2e23a204340149274d5e66203a955.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/15139150.html" target="_parent" title="非煤矿山作业安全操作规程Word格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/ccdd3ea8-6978-4937-890a-a994a3797371/c8925967421543ecb7a84a5e893e1016.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/15139151.html" target="_parent" title="敦豪实习报告Word格式.docx"> <img class="lazys" data-original='https://file1.bdocx.com/fileroot1/2022-10/28/71a71850-2cb9-4532-97a0-db254291804a/9bcb89257ce24e569d45523f45e578e7.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/4680480.html">https://www.bdocx.com/doc/4680480.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%e5%ad%a6%e4%b9%a0%e8%b5%84%e6%96%99.docx');" >更多</a> </div> <div id="author-works-list" class="author-works-list bgF"> <ul> <li><img alt="初中语文必背50个文学常识.docx" class="docx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30867079.html" title="初中语文必背50个文学常识.docx">初中语文必背50个文学常识.docx</a> </li><li><img alt="初中语文常考词语解释90组.docx" class="docx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30867078.html" title="初中语文常考词语解释90组.docx">初中语文常考词语解释90组.docx</a> </li><li><img alt="初中语文诗歌鉴赏万能答题模板.docx" class="docx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30867077.html" title="初中语文诗歌鉴赏万能答题模板.docx">初中语文诗歌鉴赏万能答题模板.docx</a> </li><li><img alt="初中语文散文阅读知识与技巧.docx" class="docx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30867076.html" title="初中语文散文阅读知识与技巧.docx">初中语文散文阅读知识与技巧.docx</a> </li><li><img alt="初中语文常用的诗歌表现手法.docx" class="docx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30867075.html" title="初中语文常用的诗歌表现手法.docx">初中语文常用的诗歌表现手法.docx</a> </li><li><img alt="初中语文考试作文开头总结.docx" class="docx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30867074.html" title="初中语文考试作文开头总结.docx">初中语文考试作文开头总结.docx</a> </li><li><img alt="初中语文理解词语的18种方法.docx" class="docx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30867073.html" title="初中语文理解词语的18种方法.docx">初中语文理解词语的18种方法.docx</a> </li><li><img alt="初中语文课外常识50题(含答案).docx" class="docx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30867072.html" title="初中语文课外常识50题(含答案).docx">初中语文课外常识50题(含答案).docx</a> </li><li><img alt="初中语文拓展:王勃《滕王阁序》中的40个成语.docx" class="docx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30867071.html" title="初中语文拓展:王勃《滕王阁序》中的40个成语.docx">初中语文拓展:王勃《滕王阁序》中的40个成语.docx</a> </li><li><img alt="初中语文七年级下册古诗文默写.docx" class="docx" src="/Images/s.gif" /><a target="_parent" href="https://www.bdocx.com/doc/30867070.html" title="初中语文七年级下册古诗文默写.docx">初中语文七年级下册古诗文默写.docx</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="134" /> <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=%e5%ad%a6%e4%b9%a0');" 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=%e8%b5%84%e6%96%99');" 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 = '0001800001'; var adhtml = ""; var adarray = Encoder.htmlDecode(adhtml); initWidth(); var product_id = "4680480"; var product_code = "4680480"; 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 = '3'; var LimitButtonText = '现在购买'; var DocScoreDownLoad = parseFloat('3'); 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">3</b> 金币</span>' +'</p><p style="text-align:center; padding-top:30px;">' +'<a target="_parent" rel="nofollow" href="https://www.bdocx.com/down/4680480.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=4680480"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 = "4680480"; 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=HvnTD2pSAh8%3d&parto=j4IhJPKz1hyu3aC0EOe3zVniVtjAuuv%2fdp4WoeBZ2XVREhcAk9OUIuhgCP6BjQ%2fUiQ%2f%2fEYYpwv%2b2HqlJEBLx9c4LzaOI6v4AvM%2bAwlH9e46qf8TJYfLCQTkQnSDcKT5oklEE%2fFDY4I8WLo37G79eINs0CzlbfS%2ffTk7iy%2fg4dlqtvxPVeJJKSrjVwdGGZEjpYsJYbfKH%2bY0v1LRXChygbxXU1XRaK58h" 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%3d4680480'; return; }</script> <script type="text/javascript"> var objjubao = null; function jubao() { var html = '<iframe src="https://www.bdocx.com/UserManage/ReportBack.aspx?id=4680480&url=rkm56XE mSTpX60 NSICJJzJeI0SxkjuKOfuUZPhKhCsdUzMNoZvz4VsvsrhVend" 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>