<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>上传图片的时候预览</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr bgcolor="#f5f5f5">
<td height="30" align="center" valign="middle">图片链接</td>
<td height="35" align="center" valign="middle"><input type="file" name="uploadfile1" runat="server" id="uploadfile1" onpropertychange="document.all.imgID.src='file:///'+this.value">
</td>
</tr>
<tr bgcolor="#f5f5f5">
<td height="70" align="center" valign="middle">缩略图</td>
<td height="70" align="center" valign="middle"><img id="imgID" width="82" height="65" border="0" >
</td>
</tr>
</table>
</div>
</form>
</body>
</html>