有這個上傳腳本,它的工作原理。但是我想在上傳完成後添加一個cmd命令。這可能嗎?先謝謝你。ASP.NET VBscript添加一個cmd行?
<%@ Page Language=VBScript %>
<script runat="server">
Protected Sub Button1_Click(ByVal sender As Object, _
ByVal e As System.EventArgs)
If FileUpload1.HasFile Then
Try
FileUpload1.SaveAs("C:\Inetpub\wwwroot\upload\" & _
FileUpload1.FileName)
Label1.Text = "File name: " & _
FileUpload1.PostedFile.FileName & "<br>" & _
"File Size: " & _
FileUpload1.PostedFile.ContentLength & " kb<br>" & _
"Content type: " & _
FileUpload1.PostedFile.ContentType
Catch ex As Exception
Label1.Text = "ERROR: " & ex.Message.ToString()
End Try
Else
Label1.Text = "You have not specified a file."
End If
End Sub
</script>
你是什麼意思「添加CMD按鈕」究竟?請更清楚。另外,'ContentLength'屬性返回的長度是*字節*而不是千字節,你必須在1024中分割得到KB。 –
請解釋「添加cmd命令」的含義,很難說明你指的是什麼。你是否試圖從shell運行一個外部命令? –
我的意思是想插入一個命令,例如「REN C:\ Document.rtf YES.rtf」。 – user791276