管理员界面新闻管理
在新闻管理方面系统由两个页面分别实现了新闻的添加和删除
新闻的添加()
首先来看添加新闻的页面如图所示
图 添加新闻页面
ST_Admin_addnewsaspx的HTML主要代码
ST_Admin_addnewsaspx的HTML主要代码如程序所示
程序 ST_Admin_addnewsaspx
<HTML>
<HEAD>
<title>ST_Admin_addnews</title>
<link rel=stylesheet type=text/css
href=css/ST_Admin_STYLECSS>
</HEAD>
<body>
<form id=Form method=post runat=server>
<!TextBox控件>
<asp:TextBox id=newstitle style=ZINDEX: ; LEFT:
px; POSITION: absolute; TOP: px
runat=server Width=px></asp:TextBox>
<asp:TextBox id=newscon style=ZINDEX: ; LEFT: px;
POSITION: absolute; TOP: px runat=server
Width=px TextMode=MultiLine
Height=px></asp:TextBox>
<!Button 控件>
<asp:Button id=Button style=ZINDEX: ; LEFT: px;
POSITION: absolute; TOP: px runat=server
Text=发布 onclick=Button_Click></asp:Button>
<!Label控件>
<asp:Label id=Label style=ZINDEX: ; LEFT: px;
POSITION: absolute; TOP: px runat=server>标题</asp:Label>
<asp:Label id=Label style=ZINDEX: ; LEFT: px;
POSITION: absolute; TOP: px runat=server>类别</asp:Label>
<asp:Label id=Label style=ZINDEX: ; LEFT: px;
POSITION: absolute; TOP: px runat=server>内容</asp:Label>
<asp:DropDownList id=newsclass style=ZINDEX: ; LEFT:
px; POSITION: absolute; TOP: pxrunat=server>
</asp:DropDownList></form>
</body>
</HTML>
【代码说明】代码第~行是一个文本框表示新闻内容因为新闻内容不可能只有一行所以这里设置了TextBox的TextMode属性将其设置为MultiLine表示这是一个多行文本框
返回目录ASPNET项目开发指南
编辑推荐
ASPNET MVC 框架揭秘
ASPNET开发宝典
ASP NET开发培训视频教程