怎么得到上传图片的名字?
<html>
<body bgcolor=#FFFBE7>
<center>
<form name="form1" action=process.asp method=post enctype="multipart/form-data">
<table border=1 width=70% style="margin-top:6em" >
<tr>
<td colspan=2 align=center>请贴上你的相片</td>
</tr>
<tr>
<td>相片文件名:</td><td><input type=file name=mefile></td>
</tr>
<tr>
<td align=center colspan=2><input type=submit value="发送"> <input type=reset value="取消"></td>
</tr>
</table>
</form>
</center>
</body>
</html>
这是我的上传界面,当用户选择了一个图片后,例如是123.jpg,那我怎样才可以知道用户选择了一个什么名字的图片?