asp.net

位置:IT落伍者 >> asp.net >> 浏览文章

ASP.NET项目开发指南:产品的添加(1)


发布日期:2019年11月02日
 
ASP.NET项目开发指南:产品的添加(1)

管理员界面产品管理

与新闻管理类似产品管理同样使用了两个页面即产品添加页面与产品更新和删除页面

产品的添加(

先来看产品添加页面如图所示

产品添加页面

产品添加页面ST_Admin_addproaspx的主要HTML代码

页面中主要用到了一些LabelTextBox以及Button控件DropDownList控件中的内容会在后台代码中从数据库读取如程序所示

程序 ST_Admin_addproaspx

<form id=Form method=post runat=server> <FONT face=宋体> <!标签>

<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>

<!服务器端的textbox>

<asp:TextBox id=TextBox style=ZINDEX: ; LEFT: px;

POSITION: absolute; TOP: px runat=server></asp:TextBox>

<asp:TextBox id=TextBox style=ZINDEX: ; LEFT: px;

POSITION: absolute; TOP: px runat=server></asp:TextBox>

<asp:TextBox id=TextBox style=ZINDEX: ; LEFT: px;

POSITION: absolute; TOP: px runat=server>expjpg</asp:TextBox>

<asp:TextBox id=TextBox style=ZINDEX: ; LEFT: px;

POSITION: absolute; TOP: px

runat=server TextMode=MultiLine Height=px

Width=px></asp:TextBox>

<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:Button id=Button style=ZINDEX: ; LEFT: px;

POSITION: absolute; TOP: px runat=server

Width=px Text=添加产品

onclick=Button_Click></asp:Button>

<asp:DropDownList id=DropDownList style=ZINDEX: ;

LEFT: px; POSITION: absolute; TOP: px

runat=server Width=px></asp:DropDownList>

</FONT> </form>

【代码说明】代码第~行是一个下拉列表框这里并没有为其赋值其值来源于数据库所以需要在后台动态为其设置代码第~行是一个多行文本框用来输入产品介绍

返回目录ASPNET项目开发指南

编辑推荐

ASPNET MVC 框架揭秘

ASPNET开发宝典

ASP NET开发培训视频教程

上一篇:ASP.NET项目开发指南:新闻的删除[1]

下一篇:ASP.NET项目开发指南:产品的添加(2)