0

我正在尝试使用 vb.net 将图像从客户端保存到文件夹

""具有 myImage ID 的图像 ""

<asp:Image runat="server" ID="myImage" ImageUrl="http://www.govcomm.harris.com/images/1F-81-imageLinks650a.jpg" />
<asp:Image runat="server" ID="myImage2" ImageUrl="http://www.govcomm.harris.com/images/2F-81-imageLinks650b.jpg" />

这只是我要保存图像的位置:我没有运行或尝试使用此代码进行任何操作,我只是想知道如何执行此操作此位置位于服务器端

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
  Dim saveLocation As String = Server.MapPath("PDFs")
End Sub

另外,我想知道是否有一种方法可以使用 id 来保存,因为我可能要保存多个图像。

4

2 回答 2

1
Try this one.....
import System.Net
Dim filepath As String = Server.MapPath(myImage.ImageUrl)

Using client As New WebClient()
client.DownloadFile(filepath, Server.MapPath("Specify the path where you want to    store+imagename"))       //------For  example  client.DownloadFile(filepath,Server.MapPath("~/Image/282.gif"))
End Using
于 2012-05-24T13:00:38.047 回答
0

如果要从客户端(通过浏览器从用户)上传文件到服务器文件夹,则需要使用 FileUpload 控件

<asp:FileUpload ID="FileUpload1" runat="server" />

PostedFile.SaveAs在您的代码隐藏中,您可以通过调用方法将其保存到某个位置

    If FileUpload1.HasFile Then
        somefileNameWithExtension="file.pdf" ' Replace this with a a valid file name
        FileUpload1.PostedFile.SaveAs(somefileNameWithExtension)
    End If

编辑 :根据评论

如果要从 Internet 下载文件,可以使用 WebClient 类的 DownloadFile 方法来完成。这是一个例子。

    Using webClient As New WebClient()

        Dim targrtFileName = "D:\\myfile.png" ' 
        Dim sourceFile = "http://converter.telerik.com/App_Themes/images/ccHead.png"
        'read the Source of your image control and replace in sourceFile  variable.

        webClient.DownloadFile(sourceFile , targrtFileName)

    End Using
于 2012-05-24T13:04:52.233 回答