DiFalco 0 Denunciar post Postado Setembro 27, 2004 pessoal,tô precisando fazer uploads de planilhas excel para o "meu" servidor... como eu faço isso, alguém sabe ?? :blink: :wacko: :unsure: :blink: :wacko: :unsure: :blink: :wacko: :unsure: Compartilhar este post Link para o post Compartilhar em outros sites
augusto 0 Denunciar post Postado Outubro 2, 2004 upload normal não funciona?????<input type=file runat=server id=planilha> Compartilhar este post Link para o post Compartilhar em outros sites
JucaMaster 0 Denunciar post Postado Outubro 6, 2004 Imports System.WebImports System.CollectionsImports System.IO'===>fazendo o UpLoad do arquivo selecionado strNomeArq = txtArquivo.PostedFile.FileName Dim NomeArquivo As String = System.IO.Path.GetFileName(strNomeArq) Dim pos As Integer pos = strNomeArq.LastIndexOf("\") + 1 NomeArquivo = strNomeArq.Substring(pos) '====>tratando possíveis erros<=== Try txtArquivo.PostedFile.SaveAs("caminho do servidor" + NomeArquivo) Catch ex As Exception End Try Compartilhar este post Link para o post Compartilhar em outros sites