5分钟让你了解VB.NET生成静态页面和分页原理

程序员有的时候为一些小的问题而烦恼,在这里帮大家解决一个关于VB.NET生成静态页面和分页原理的分析,下面就来看代码:

1、VB.NET生成静态页面和分页原理静态页面template.html,主要是定义了一些特殊字符,用来被替换。

 
 
 
  1.  
  2.  
  3.  
  4. $Title title> </li> <li> head> </li> <li><body> </li> <li><div style="width: 417px; height: 54px" align="center"> </li> <li><br /> </li> <li>$Title div> </li> <li><div style="width: 417px; height: 8px"> </li> <li>浏览<font color="red"><script src="http://localhost/.Net/NewsFiles/ClickCount.aspx?NewsId=$NewsId"> script> font>次  $Time div> </li> <li><div style="width: 417px; height: 100px"> </li> <li>$Content div> </li> <li><div style="width: 416px; height: 9px"> </li> <li>$Pager div> </li> <li><div style="width: 416px; height: 8px"> </li> <li><form id="form1" action="../AddComment.aspx" style="margin:0px"> </li> <li><input id="Text1" type="text" /><Img id="Image1" src="../../UserInfo/CheckCode.aspx"/><br /> </li> <li><textarea  id="CommentContent" cols="20" rows="2"> textarea> </li> <li><br /> </li> <li><input id="NewsId" type="hidden" value="$NewsId"/> </li> <li><input id="Button1" type="submit" value="button" /> </li> <li><a href="../Display.aspx?NewsId=$NewsId">查看更多评论 a> form> </li> <li> div> </li> <li> body> </li> <li> html> </li> </ol></pre><p><strong>2、VB.NET生成静态页面和分页原理分析前态页面 NewsAdd.aspx,就是一个表单,用来填写新闻的标题和内容。</strong></p><pre> <ol> <li><strong><</strong>%...@ Page Language="C#" AutoEventWireup="false" validateRequest="false" CodeFile="NewsAdd.aspx.cs" Inherits="NewsAdd.Admin_AdminPanel_NewsAdd" %<strong>></strong> </li> <li><strong><</strong>%...@ Register TagPrefix="FCKeditorV2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %<strong>></strong> </li> <li><strong>></strong> </li> <li><strong><html</strong> xmlns="http://www.w3.org/1999/xhtml" <strong>></strong> </li> <li><strong><head</strong> runat="server"<strong>></strong> </li> <li><strong><title></strong>添加新闻<strong> title></strong> </li> <li><strong> head></strong> </li> <li><strong><body></strong> </li> <li><strong><form</strong> id="form1" runat="server"<strong>></strong> </li> <li><strong><div></strong> </li> <li><strong><asp:Label</strong> ID="Label2" runat="server" Text="标题"<strong>> asp:Label></strong> </li> <li><strong><asp:TextBox</strong> ID="Title" runat="server" Width="325px"<strong>> asp:TextBox><br</strong> <strong>/></strong> </li> <li><strong><asp:Label</strong> ID="Label1" runat="server" Text="内容"<strong>> asp:Label></strong> </li> <li><strong><FCKeditorV2:FCKeditor</strong> id="Content" basePath="~/FCKeditor/"  runat="server" Height="400px" Width="70%"<strong>> FCKeditorV2:FCKeditor></strong> </li> <li><strong><asp:Button</strong> ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" <strong>/></strong> </li> <li><strong><asp:Label</strong> ID="Message" runat="server" <strong>> asp:Label> div></strong> </li> <li><strong> form></strong> </li> <li><strong> body></strong> </li> <li><strong> html></strong> </li> </ol></pre><p><strong>3、VB.NET生成静态页面和分页原理后台页面 NewsAdd.aspx.cs</strong></p><pre> <ol> <li>using System;  </li> <li>using System.Data;  </li> <li>using System.Configuration;  </li> <li>using System.Collections;  </li> <li>using System.Web;  </li> <li>using System.Web.Security;  </li> <li>using System.Web.UI;  </li> <li>using System.Web.UI.WebControls;  </li> <li>using System.Web.UI.WebControls.WebParts;  </li> <li>using System.Web.UI.HtmlControls;  </li> <li>using Mysqlserver;  </li> <li>using System.IO;  </li> <li>using System.Text;  </li> <li>namespace NewsAdd  </li> <li>...{  </li> <li>public partial class Admin_AdminPanel_NewsAdd : System.Web.UI.Page  </li> <li>...{  </li> <li>protected void Page_Load(object sender, EventArgs e)  </li> <li>...{  </li> <li>}  </li> <li>protected void Button1_Click(object sender, EventArgs e)  </li> <li>...{  </li> <li>string strDate = DateTime.Now.ToString("yyMMdd") + "\" + DateTime.Now.ToString("yyyymmddhhmmss");  </li> <li>string strFileName = strDate + ".shtml";//存储到数据库中  </li> <li>string strTitle=Request.Form["Title"].ToString().Trim();//接收传过来的标题  </li> <li>string strContent=Request.Form["Content"].ToString().Trim();//接收传过来的内容  </li> <li>string[] content = strContent.Split(new Char[] ...{'|'});//对内容进行拆分,并保存到数组  </li> <li>int upbound = content.Length;//数组的上限  </li> <li>SqlServerDataBase db = new SqlServerDataBase();  </li> <li>bool success = db.Insert("insert into inNews(Title,Content,FilePath)values('" + strTitle + "','" + strContent + "','" + strFileName + "')", null);  </li> <li>//if (success)  </li> <li>   // Message.Text = "添加成功!";  </li> <li>/**////////////////////////////创建当前日期的文件夹开始  </li> <li>string dir = Server.MapPath("../../"+"NewsFiles/"+DateTime.Now.ToString("yyMMdd"));//用来生成文件夹  </li> <li>if (!Directory.Exists(dir))  </li> <li>...{  </li> <li>Directory.CreateDirectory(dir);  </li> <li>} </li> </ol></pre><p>【编辑推荐】</p><ol><li>VB.NET获取硬盘信息四大法宝</li><li>讲述VB.NET调用Excel的好处</li><li>简单例子概述VB.NET新窗体</li><li>描述VB.NET工程转换成步骤</li><li>自己动手实现VB.NET控件数组</li></ol> <p> 网页标题:<a href="http://www.csdahua.cn/qtweb/news34/445184.html">5分钟让你了解VB.NET生成静态页面和分页原理</a> <br> 当前地址:<a href="http://www.csdahua.cn/qtweb/news34/445184.html">http://www.csdahua.cn/qtweb/news34/445184.html</a> </p> <p> 网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等 </p> <p class="adpic"> <a href="https://www.cdcxhl.com/service/ad.html" target="_blank" class="ad">广告</a> <a href="" target="_blank" class="adimg"><img src=""></a> </p> <p class="copy"> 声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: <a href="http://www.csdahua.cn/" target="_blank">快上网</a> </p> </div> <div class="newsmorelb"> <p>成都快上网为您推荐相关内容</p> <ul> <li> <a href="/qtweb/news33/445183.html">Android性能优化-OOM崩溃引起的内存管理大爆炸详解</a> </li><li> <a href="/qtweb/news32/445182.html">面向对象的设计模型,数学模型,物理模型</a> </li><li> <a href="/qtweb/news31/445181.html">html如何做左右结构的</a> </li><li> <a href="/qtweb/news30/445180.html">马来西亚中转服务器?(马来西亚中转服务器有哪些)</a> </li><li> <a href="/qtweb/news29/445179.html">管理Linux下PHP目录管理技巧(linuxphp目录)</a> </li><li> <a href="/qtweb/news28/445178.html">主机域名有哪些</a> </li><li> <a href="/qtweb/news27/445177.html">pubg怎么降低俄服延迟?为什么俄罗斯的服务器延时低</a> </li><li> <a href="/qtweb/news26/445176.html">统计MySQL数据总量的方法(mysql数据库查询数据总量)</a> </li><li> <a href="/qtweb/news25/445175.html">基于ngx_lua模块的WAF开发实践</a> </li> </ul> </div> </div> <div class="col-lg-3 noneb"> <div class="bkright" style="margin-top: 0"> <p><a href="https://www.cdcxhl.com/news/gaiban/">网站改版知识</a></p> <ul> <li> <a class="text_overflow" href="/qtweb/news22/194022.html">制定混合云中的HPC战略,应该怎么做?</a> </li><li> <a class="text_overflow" href="/qtweb/news32/449332.html">轻松搭建稳定高效,体验Linux云服务器(linux云服务器)</a> </li><li> <a class="text_overflow" href="/qtweb/news3/231553.html">linux怎么安装git</a> </li><li> <a class="text_overflow" href="/qtweb/news26/123576.html">从技术到社交安全从业者简历指南</a> </li><li> <a class="text_overflow" href="/qtweb/news20/167270.html">win7关闭电脑提示音、电脑系统声音、开关机声音?windows7开机铃声</a> </li><li> <a class="text_overflow" href="/qtweb/news2/519152.html">html如何http请求</a> </li><li> <a class="text_overflow" href="/qtweb/news25/286075.html">运行基于云的生成式AI系统的几个优秀实践</a> </li><li> <a class="text_overflow" href="/qtweb/news24/282724.html">利用Redis瞬间生成快照(redis生成快照)</a> </li><li> <a class="text_overflow" href="/qtweb/news3/24103.html">oracle位图索引原理</a> </li><li> <a class="text_overflow" href="/qtweb/news1/253701.html">免费云主机控制面板怎么使用的</a> </li><li> <a class="text_overflow" href="/qtweb/news35/41085.html">Linux系统下简便安装UCI库指南 (linux下安装uci库)</a> </li><li> <a class="text_overflow" href="/qtweb/news29/347229.html">为啥选择租用日本服务器</a> </li><li> <a class="text_overflow" href="/qtweb/news48/340348.html">广东惠州服务器租用如何选择</a> </li><li> <a class="text_overflow" href="/qtweb/news23/484723.html">Linux输入法用起来更顺手——SCIM。(linux输入法scim)</a> </li><li> <a class="text_overflow" href="/qtweb/news28/231228.html">防火墙怎么配置全通?防火墙服务器一般怎么设置</a> </li> </ul> </div> <div class="bkright tag"> <p><a href="https://www.cdcxhl.com/hangye/" target="_blank">分类信息网</a></p> <ul> <li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/huaxiang/" target="_blank">花箱</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/zaomaoji/" target="_blank">凿毛机</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/rxfhw/" target="_blank">柔性防护网</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/shidiao/" target="_blank">石雕</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/bgcl/" target="_blank">办公窗帘</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/hntjbj/" target="_blank">混凝土搅拌机</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/cantingsj/" target="_blank">餐厅设计</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/sljbc/" target="_blank">生料搅拌车</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/muwu/" target="_blank">木屋</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/xiaojbc/" target="_blank">小搅拌车</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/jiudiansj/" target="_blank">酒店设计</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/bdfhw/" target="_blank">被动防护网</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/yangtaihulan/" target="_blank">阳台护栏</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/vr/" target="_blank">VR全景</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/tongdiaosu/" target="_blank">铜雕雕塑</a> </li><li class="col-lg-6 col-md-6 col-sm-6 col-xs-6"> <a href="https://www.cdcxhl.com/hangye/bolimo/" target="_blank">玻璃贴膜</a> </li> </ul> </div> </div> </div> <div class="carousel-inner linkbg" style="background: #fff"> <div class="container"> <a href="http://www.cdkjz.cn/small/" target="_blank">成都小程序开发</a>    <a href="http://chengdu.cdcxhl.cn/qiye/" target="_blank">企业网站建设公司</a>    <a href="http://chengdu.cdweb.net/" target="_blank">新网创想</a>    <a href="http://www.weixiufdj.com/" target="_blank">成都发电机维修保养公司</a>    <a href="http://chengdu.cdcxhl.com/dingzhi/" target="_blank">成都定制网站开发</a>    <a href="http://www.cdxwcx.cn/tuoguan/zigong.html" target="_blank">自贡主机托管</a>    <a href="https://www.scvps.cn/" target="_blank">服务器租凭</a>    <a href="http://www.scemts.cn/" target="_blank">德阳东方电机技改</a>    <a href="https://www.cdcxhl.com/waimao.html" target="_blank">外贸营销网站建设</a>    <a href="http://www.teliergzn.com/" target="_blank">特丽尔硅藻泥</a>    <a href="http://chengdu.xwcx.net/mobile/" target="_blank">移动手机网站制作</a>    <a href="http://www.cdhuace.com/huace.html" target="_blank">成都画册设计</a>    <a href="https://www.cdcxhl.com/tuoguan.html" target="_blank">四川服务器托管</a>    <a href="http://www.cdxwcx.cn/tuoguan/yaan.html" target="_blank">雅安机房托管</a>    <a href="http://www.cdjieda.cn/" target="_blank">成都网站制作</a>    <a href="https://www.cdcxhl.com/seo.html" target="_blank">成都网站推广</a>    <a href="http://m.cdcxhl.cn/dingzhi/ " target="_blank">定制网站</a>    <a href="http://www.cxjianzhan.com/mobile/" target="_blank">wap网站建设</a>    <a href="http://www.cdhuace.com/logo.html" target="_blank">成都logo设计标志</a>    <a href="http://seo.cdcxhl.cn/" target="_blank">成都SEO公司</a>     </div> </div> <footer> <div class="carousel-inner footjz"> <div class="container"> <i class="icon iconfont zbw"></i> 高品质定制 <i class="icon iconfont"></i> 跨终端自动兼容 <i class="icon iconfont"></i> 节约开发成本 <i class="icon iconfont"></i> 开发周期短 <i class="icon iconfont"></i> 一体化服务 <button type="button" class="btn btn-default btn-lg" onClick="window.location.href='tencent://message/?uin=631063699&Site=&Menu=yes'"> 立即开始2800定制网站建设</button> <button type="button" class="btn btn-default btn-xs" onClick="window.location.href='tencent://message/?uin=631063699&Site=&Menu=yes'"> 2800定制网站建设</button> </div> </div> <div class="carousel-inner bqsy"> <div class="container"> <div class="lxfs"> <h4 class="yutelnone">028-86922220 13518219792</h4> <h4 class="yutelblock"><a href="tel:02886922220">028-86922220</a> <a href="tel:13518219792">13518219792</a></h4> <a class="btn btn-default" href="tencent://message/?uin=532337155&Site=&Menu=yes" role="button">网站建设<span>QQ</span>:532337155</a> <a class="btn btn-default" href="tencent://message/?uin=631063699&Site=&Menu=yes" role="button">营销推广<span>QQ</span>:631063699</a> <a class="btn btn1 btn-default" href="mqqwpa://im/chat?chat_type=wpa&uin=532337155&version=1&src_type=web&web_src=oicqzone.com" role="button">网站制作<span>QQ</span>:532337155</a> <a class="btn btn1 btn-default" href="mqqwpa://im/chat?chat_type=wpa&uin=631063699&version=1&src_type=web&web_src=oicqzone.com" role="button">营销推广<span>QQ</span>:631063699</a> <a class="btn btn-default nonea" href="tencent://message/?uin=1683211881&Site=&Menu=yes" role="button">售后QQ:1683211881</a> <div class="dz">成都快上网专注: <a href="http://www.csdahua.cn/" target="_blank">网站优化</a> <a href="http://www.csdahua.cn/" target="_blank">网络推广</a> <a href="http://www.csdahua.cn/" target="_blank">网站建设</a> <address>地址:成都太升南路288号锦天国际A幢10楼</address> </div> </div> <div class="bzdh dz"><img src="https://www.cdcxhl.com/imges/bottom_logo.png" alt="创新互联"> <p><a href="https://www.cdcxhl.com/menu.html" target="_blank">成都创新互联科技有限公司</a><br> Tel:028-86922220(7x24h)</p></div> </div> </div> </footer> </body> </html> <script> $.getJSON ("../../qtwebpic.txt", function (data) { var jsonContent = { "featured":data } var random = jsonContent.featured[Math.floor(Math.random() * jsonContent.featured.length)]; $(".adpic .adimg").attr("href",random.link) $(".adpic img").attr("src",random.pic); }) </script>