各位高手,请问在.net中上传文件保存后如何在页面显示其相对应的文件名,谢谢
各位高手,请问在.net中上传文件保存后如何在页面显示其相对应的文件名并进行超链接预览文件?下面是我写的两种方法,可是都实现不了,问题出在哪呢?
①.aspx文件
第一种
<td class="td_css" width="40%">
<asp:LinkButton ID="LinkIllustrationId" runat="server">LinkButton</asp:LinkButton>
</td>
第二种
<td class="td_css" width="40%">
<asp:Label ID="LabelmyFileUpload" runat="server" Text="" >
</asp:Label> </td>
②.aspx.cs文件
第一种
string LabelmyFileUpload = IllustrationId.Text;
string strFileExt = ".pdf";
LinkIllustrationId.PostBackUrl = Constant.strPDFUploadFilePath + this.IllustrationId.Text + strFileExt;
第二种
string strFileExt = ".pdf";
string LabelmyFileUpload = IllustrationId.Text;
this.LabelmyFileUpload.Text = Constant.strPDFUploadFilePath + this.IllustrationId.Text+ strFileExt;
--------------------编程问答-------------------- 用<a></a> 标签试试。 --------------------编程问答-------------------- 谢谢!!
补充:.NET技术 , VB.NET