这是页面代码
1
<%@ Page language="c#" Codebehind="pic.aspx.cs" AutoEventWireup="false" Inherits="test.pic" %>
2
<HTML>
3
<HEAD>
4
<title>pic</title>
5
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
6
<meta name="CODE_LANGUAGE" Content="C#">
7
<meta name="vs_defaultClientScript" content="JavaScript">
8
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
9
</HEAD>
10
<body>
11
<form id="Form1" method="post" runat="server">
12
<INPUT id="File1" type="file" name="File1" runat="server">
13
<asp:button id="Button1" runat="server" Text="Button"></asp:button><BR>
14
<table border="0" width="100%">
15
<tr>
16
<td>
17
<asp:Image id="Image1" runat="server" Width="200px"></asp:Image>
18
</td>
19
<td>
20
<asp:Image id="Image2" runat="server" Width="200px"></asp:Image>
21
</td>
22
<td>
23
<asp:Image id="Image3" runat="server" Width="100px"></asp:Image>
24
</td>
25
</tr>
26
</table>
27
</form>
28
</body>
29
</HTML>
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
以下是后台代码
1
using System;
2
using System.Collections;
3
using System.ComponentModel;
4
using System.Data;
5
using System.Drawing;
6
using System.Web;
7
using System.Web.SessionState;
8
using System.Web.UI;
9
using System.Web.UI.WebControls;
10
using System.Web.UI.HtmlControls;
11
12
namespace test
13![]()
2
3
4
5
6
7
8
9
10
11
12
13