3.ImageList.aspx

xml保存图片和读取图片(二)<%@ Page language="c#" Codebehind="ImageList.aspx.cs" AutoEventWireup="false" Inherits="WebForm_Question2.ImageList" %>
xml保存图片和读取图片(二)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
xml保存图片和读取图片(二)
<HTML>
xml保存图片和读取图片(二)    
<HEAD>
xml保存图片和读取图片(二)        
<title>ImageList</title>
xml保存图片和读取图片(二)        
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
xml保存图片和读取图片(二)        
<meta name="CODE_LANGUAGE" Content="C#">
xml保存图片和读取图片(二)        
<meta name="vs_defaultClientScript" content="JavaScript">
xml保存图片和读取图片(二)        
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
xml保存图片和读取图片(二)    
</HEAD>
xml保存图片和读取图片(二)    
<body MS_POSITIONING="GridLayout">
xml保存图片和读取图片(二)        
<form id="Form1" method="post" runat="server">
xml保存图片和读取图片(二)            
<TABLE id="Table1" style="Z-INDEX: 102; LEFT: 152px; WIDTH: 694px; POSITION: absolute; TOP: 16px; HEIGHT: 240px"
xml保存图片和读取图片(二)                cellSpacing
="1" cellPadding="1" width="694" border="1">
xml保存图片和读取图片(二)                
<TR>
xml保存图片和读取图片(二)                    
<TD align="center" style="HEIGHT: 34px">
xml保存图片和读取图片(二)                        
<asp:Label id="Label1" runat="server" Width="128px" ForeColor="#000040" Font-Bold="True" Font-Size="Larger">图片列表页面</asp:Label></TD>
xml保存图片和读取图片(二)                
</TR>
xml保存图片和读取图片(二)                
<TR>
xml保存图片和读取图片(二)                    
<TD style="HEIGHT: 155px">
xml保存图片和读取图片(二)                        
<asp:DataGrid id="DG_ImageList" runat="server" AutoGenerateColumns="False" Width="672px" BorderColor="#CCCCCC"
xml保存图片和读取图片(二)                            BorderStyle
="None" BorderWidth="1px" BackColor="White" CellPadding="3" Height="144px" AllowSorting="True"
xml保存图片和读取图片(二)                            AllowPaging
="True" PageSize="5">
xml保存图片和读取图片(二)                            
<FooterStyle ForeColor="#000066" BackColor="White"></FooterStyle>
xml保存图片和读取图片(二)                            
<SelectedItemStyle Font-Bold="True" ForeColor="White" BackColor="#669999"></SelectedItemStyle>
xml保存图片和读取图片(二)                            
<ItemStyle ForeColor="#000066"></ItemStyle>
xml保存图片和读取图片(二)                            
<HeaderStyle Font-Bold="True" ForeColor="White" BackColor="#006699"></HeaderStyle>
xml保存图片和读取图片(二)                            
<Columns>
xml保存图片和读取图片(二)                                
<asp:BoundColumn DataField="imageID" HeaderText="图片ID"></asp:BoundColumn>
xml保存图片和读取图片(二)                                
<asp:BoundColumn DataField="imagepath" HeaderText="图片路径"></asp:BoundColumn>
xml保存图片和读取图片(二)                                
<asp:BoundColumn DataField="imageinfo" HeaderText="图片说明"></asp:BoundColumn>
xml保存图片和读取图片(二)                                
<asp:BoundColumn DataField="imagesize" SortExpression="imagesize" HeaderText="图片大小"></asp:BoundColumn>
xml保存图片和读取图片(二)                                
<asp:TemplateColumn>
xml保存图片和读取图片(二)                                    
<ItemTemplate>
xml保存图片和读取图片(二)                                        
<a href='ImageDisplay.aspx?imageID=<%# DataBinder.Eval(Container.DataItem,"imageID")%>'>
xml保存图片和读取图片(二)                                            查看
</a>
xml保存图片和读取图片(二)                                    
</ItemTemplate>
xml保存图片和读取图片(二)                                
</asp:TemplateColumn>
xml保存图片和读取图片(二)                            
</Columns>
xml保存图片和读取图片(二)                            
<PagerStyle HorizontalAlign="Left" ForeColor="#000066" BackColor="White" Mode="NumericPages"></PagerStyle>
xml保存图片和读取图片(二)                        
</asp:DataGrid></TD>
xml保存图片和读取图片(二)                
</TR>
xml保存图片和读取图片(二)                
<TR>
xml保存图片和读取图片(二)                    
<TD><FONT face="宋体">
xml保存图片和读取图片(二)                            
<asp:HyperLink id="HyperLink2" runat="server" NavigateUrl="index.aspx">主页面</asp:HyperLink>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
xml保存图片和读取图片(二)                            
<asp:HyperLink id="HyperLink1" runat="server" NavigateUrl="ImageList.xml">查看XMl文件</asp:HyperLink>
xml保存图片和读取图片(二)                        
</FONT>
xml保存图片和读取图片(二)                    
</TD>
xml保存图片和读取图片(二)                
</TR>
xml保存图片和读取图片(二)            
</TABLE>
xml保存图片和读取图片(二)        
</form>
xml保存图片和读取图片(二)    
</body>
xml保存图片和读取图片(二)
</HTML>
xml保存图片和读取图片(二)
4.ImageList.aspx.cs
xml保存图片和读取图片(二)using System;
xml保存图片和读取图片(二)
using System.Collections;
xml保存图片和读取图片(二)
using System.ComponentModel;
xml保存图片和读取图片(二)
using System.Data;
xml保存图片和读取图片(二)
using System.Drawing;
xml保存图片和读取图片(二)
using System.Web;
xml保存图片和读取图片(二)
using System.Web.SessionState;
xml保存图片和读取图片(二)
using System.Web.UI;
xml保存图片和读取图片(二)
using System.Web.UI.WebControls;
xml保存图片和读取图片(二)
using System.Web.UI.HtmlControls;
xml保存图片和读取图片(二)
xml保存图片和读取图片(二)
namespace WebForm_Question2

相关文章: