asp.net

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

ASP.NET项目开发指南:链接管理页面(1)


发布日期:2019年01月14日
 
ASP.NET项目开发指南:链接管理页面(1)

管理员界面链接管理

链接管理页面(

在管理员主界面中单击链接管理超链接即可在ST_adminaspx页面中部右侧加载链接管理页面ST_admin_linkaspx如图所示

链接管理页面

ST_admin_linkaspx的HTML主要代码

ST_admin_linkaspx的HTML主要代码如程序所示

程序 ST_admin_linkaspx

<form id=Form method=post runat=server>

<table width=% border= cellpadding= cellspacing=

ST_bgcolor=#fff>

<tr>

<td height=>后台管理&gt;链接管理</td>

</tr>

<tr>

<td ST_bgcolor=#ffffff>

<!GridView控件>

<asp:GridView id=LinkList runat=server

AutoGenerateColumns=False

Width=%>

<!>

<Columns>

<!模板列>

<asp:TemplateField>

<HeaderTemplate>

<table Width=% border=

cellpadding= cellspacing=

class=table>

<tr>

<td width=% height=>

<div align=center>选项</div>

</td>

<td width=% height=>

<div align=center>站点名</div>

</td>

<td width=% height=>

<div align=center>url地址</div>

</td>

<td width=% height=>

<div align=center>管理</div>

</td></tr>

</table>

</HeaderTemplate>

<ItemTemplate>

<table width=% border=

cellpadding= cellspacing=

class=table>

<tr>

<td height= width=%>

<div align=center>

<input type=checkbox

name=checkbox value=<%#

Eval(ST_l_id) %>>

</div>

</td>

<td height= width=%>

<div align=center><%#

Eval(ST_l_name) %></div>

</td>

<td height= width=%>

<div align=center><%#

Eval(ST_l_url) %></div>

</td>

<td height=>

<div align=center><a

href=ST_editaspx?action=dellink&id

=<%# Eval(ST_l_id) %>

onclick=return confirm(确定删除>删除</a></div>

</td></tr>

</table>

</ItemTemplate>

</asp:TemplateField>

</Columns>

</asp:GridView></td>

</tr>

</table>

<table width=% border= align=center cellpadding=

cellspacing= ST_bgcolor=#fff>

<tr>

<td height=>添加链接</td>

</tr>

<tr>

<td ST_bgcolor=#ffffff>&nbsp;

<FONT face=宋体>站点名</FONT>

<asp:TextBox id=l_name runat=

server></asp:TextBox><FONT face=

宋体>站点URL:</FONT>

<asp:TextBox id=l_url runat=server></asp:TextBox>

<asp:Button id=Button runat=server Text=添加

onclick=Button_Click></asp:Button></td></tr>

</table>

</form>

【代码说明】此页面用了一个GridView控件和一个添加按钮代码第~行的GridView控件用来向用户展示已有的链接信息同时代码第~行提供删除链接信息的操作代码第~行的添加按钮则用来提供添加新链接信息的操作

说明GridView的宽度设置为width=%表示占当前表格宽度的%

返回目录ASPNET项目开发指南

编辑推荐

ASPNET MVC 框架揭秘

ASPNET开发宝典

ASP NET开发培训视频教程

上一篇:ASP.NET项目开发指南:评论的删除(2)

下一篇:ASP.NET项目开发指南:链接管理页面(2)