新闻开发系统总结

牛腩新闻发布系统可以说是b/s开发方式的一个开始,也是对以往知识的一个回顾。 此次工程实践再一次为我们开启了一扇动人的窗。

此系统的前一部分所需知识包含在已有的知识网中,不过在这部分知识网中数据库的存储过程和触发器未曾经过工程实践。这一次算是一个补充。这两者的用法不必多说,好处提一句:较少了网络流量(即减少了与数据库的交互次数,这一点在做c/s方式时有所体会,现在想想,那时多步完成的一个业务逻辑,如今可以一步完成了),提升了执行效能。

在这次实践中也解决了原先一个疑问:sql语句中使用参数那么麻烦起到了什么作用呢。后来也接触了点SQL注入的问题,不过未曾将两者联系起来。如今清楚在sql语句中使用参数可以有效地防止SQL注入。同时,这也引发了我的思考。为什么我在遇到感觉复杂问题的时候没多问追问一句:既然这么复杂为什么还在使用呢,我使用的那个简单方法究竟较之是好是坏呢?不要轻易放弃犯错的机会也不要轻易放弃追问的机会。

此外,还使用了MVC三层架构。对于这块,曾经在二次开发机房收费系统时,让我大为止步。现在想想也就是提高软件灵活性的一种思想。往日苦恼的东西,而今不离双手与大脑。

说道MVC,其实这半年来一直是在这个架构上做工程、学习。现今的这个新闻发布系统仍旧不离此架构,只是打开了另一扇门:B/S 方式。与C/S方式相比,最直接的区别就是由原先的桌面窗体换成了浏览器中的页面。

在做工程的过程中,学习了下htmlCSS的入门教程,他们就构成了我做的页面的基础功能部分。而网页(即V层)在与业务逻辑层交互时,同C/S方式的V层与C层交互上有所不同,那就是有时我们必须要手动写好获取用户从页面输入的数据后点击的数据(如使用request类的QueryString获取网页中传递的字符串等)。

对比两种开发方式的界面层,我感觉界面层也分为前台和后台,只不过C/S方式中使用的开发工具vb dot net ,主要是在前台拖动控件来完成界面的布局的。而B/S方式中则主要是使用代码(htmlcssJScript等等)来布局的。界面层的后台完成两者则无太大区别。

在接触的新东西就是iis了,用起来不难,在此不多说。

在感受着这扇刚打开的窗之美的同时,感受最深的就是“理解”与“实践”。二者相辅相成,缺一则不达!总之,撕开的这个口子带出来的东西定不会少,并且也拉开了团队开发的序幕……

新闻系统 acess+vs <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <%@ Register Src="custom/bottom.ascx" TagName="bottom" TagPrefix="uc1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>新闻主页</title> </head> <body style="background-image:url([~/image/bg1.jpg]); background-color:Silver" > <form id="form1" runat="server"> <div align=center style="position:absolute; left:100px;right:100px; width:800px; top: 0px; height: 500px;"> <asp:Image ID="Image1" runat="server" Width="100%" Height="100%" ImageUrl="~/image/1.jpg" ForeColor="#E0E0E0"/> <div align=center style="position:absolute;width:800px;top:0px; left:0px; height:100px;"> <br /> <br /> <asp:Label ID="Label3" runat="server" BorderStyle="None" Font-Bold="True" Font-Names="宋体" Font-Size="45px" Font-Strikeout="False" Font-Underline="True" Text="欢迎进入浏览新闻" ForeColor="Fuchsia"></asp:Label></div> <div align=right style="position:absolute;width:800px;top:100px; left:0px;">  <asp:Label ID="Label2" runat="server" Text="关键字:" ForeColor="Yellow"></asp:Label> <asp:TextBox ID="TextBox1" runat="server" Width="127px"></asp:TextBox>   <asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="搜索" />            </div> <div align=left style="position:absolute; left:0px;width:100px; height: 163px;top:130px"> <asp:Label ID="Label4" runat="server" Text="热度关键词:"></asp:Label> <asp:DataList ID="DataList1" runat="server" DataKeyField="KeyId" HorizontalAlign="Left" OnItemCommand="DataList1_ItemCommand" Width="100px" Font-Size="Small" > <ItemTemplate> <asp:LinkButton ID="LinkButton1" runat="server" Text='<%# Eval("KeyName") %>' CommandName="select" CommandArgument='<%# Eval("KeyId") %>'></asp:LinkButton>     <asp:Label ID="Label5" runat="server" Text='<%# Eval("KeyHeat") %>'></asp:Label> </ItemTemplate> <ItemStyle BorderStyle="None" HorizontalAlign="Center" /> </asp:DataList> </div> <div align=center style="position:absolute; left:100px;width:600px; top: 130px;"> <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False" DataKeyNames="NewsId" Width="600px" OnPageIndexChanging="GridView1_PageIndexChanging" > <Columns> <asp:BoundField DataField="NewsId" HeaderText="ID" Visible="False" /> <asp:HyperLinkField DataNavigateUrlFields="NewsId" DataNavigateUrlFormatString="ShowOneNews.aspx?NewsId={0}" DataTextField="NewsTitle" HeaderText="新闻标题" > <ItemStyle ForeColor="Lime" /> </asp:HyperLinkField> <asp:BoundField DataField="NewsType" HeaderText="新闻类别" > <ItemStyle ForeColor="Cyan" /> </asp:BoundField> <asp:BoundField DataField="NewsAddDate" HeaderText="发布日期" > <ItemStyle ForeColor="Yellow" /> </asp:BoundField> <asp:HyperLinkField DataNavigateUrlFields="NewsId" DataNavigateUrlFormatString="EditNews.aspx?NewsId={0}" HeaderText="编辑" Target="_top" Text="编辑" Visible="False" /> <asp:CommandField ShowDeleteButton="True" Visible="False" /> </Columns> <RowStyle HorizontalAlign="Center" VerticalAlign="Middle" /> <EditRowStyle HorizontalAlign="Center" VerticalAlign="Middle" /> </asp:GridView> <asp:Label ID="Label1" runat="server" Text="Label" Width="49px"></asp:Label> </div> <div align=left style="position:absolute; right:0px;width:100px; height: 163px;top:130px"> <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" Width="98px" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"> </asp:DropDownList></div> <div align=left style="position:absolute;width:700px; bottom:0px; left: 50px;"> <uc1:bottom ID="Bottom1" runat="server" /> </div> </div> </form> </body> </html>
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值