我有一个浏览按钮,我需要浏览文件并保存。我成功保存了数据库的路径,但在编辑时我无法在浏览按钮文本框中获取保存的路径。我怎么能办?
我的浏览器代码是这样的:
![<asp:FileUpload ID="DocumentUpload" runat="server" /></td>][1]
我的观看代码是这样的:
![private void ViewDocumentInfo(int documentId)
{
try
{
TbldocumentmasterInfo cMaster = cmService.GetDocumentInfoById(documentId);
if (cMaster != null)
{
this.TxtEntryDate.Text = Common.DispDate(cMaster.Entrydate);
this.TxtDocumentName.Text = cMaster.Documentname;
this.TxtDocumentCode.Text = cMaster.Documentcode;
this.TxtDescription.Text = cMaster.Description;
//this.TxtPath.Text = cMaster.Fullpath;
//DocumentUpload.PostedFile.FileName.Substring(DocumentUpload.PostedFile.FileName.LastIndexOf("\\") + 1) = cmInfo.Fullpath;
this.DocumentUpload.HasFile.ToString() = cMaster.Fullpath;
this.DdlcategoryId.SelectedValue = Common.IsNull(cMaster.Categoryid);
this.TxtRemarks.Text = cMaster.Remarks;
}
if (documentId > 0)
{
this.btnSave.Text = "Update";
}
}
catch (Exception ex)
{
EM.ErrLog("DocumentMaster.aspx.cs", "ViewDocumentInfo", ex);
}
}][2]
[1]:
[2]:
答案 0 :(得分:0)
由于安全问题,我不认为这是可能的。只需在其旁边放置一个标签并显示其中的路径即可。