| | |
help in data table object
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Nov 2008
Posts: 16
Reputation:
Solved Threads: 2
Hi.
You can try this method. "FileUpload1" is server-control.
Good luck
Protected Sub cmdOK_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdOK.Click
Dim _fileName As String = Request.PhysicalApplicationPath & FileUpload1.FileName
Dim _byte() As Byte = FileUpload1.FileBytes()
Dim _file As New IO.FileStream(_fileName, IO.FileMode.Create)
For _i As Integer = 0 To _byte.Length - 1
_file.WriteByte(_byte(_i))
Next
_file.Close()
'-----------------------
' DO SOMETHING
End Sub
You can try this method. "FileUpload1" is server-control.
Good luck
Protected Sub cmdOK_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdOK.Click
Dim _fileName As String = Request.PhysicalApplicationPath & FileUpload1.FileName
Dim _byte() As Byte = FileUpload1.FileBytes()
Dim _file As New IO.FileStream(_fileName, IO.FileMode.Create)
For _i As Integer = 0 To _byte.Length - 1
_file.WriteByte(_byte(_i))
Next
_file.Close()
'-----------------------
' DO SOMETHING
End Sub
![]() |
Similar Threads
- How to check data type (Visual Basic 4 / 5 / 6)
- How to Update a Data Table? (ASP.NET)
- Navigation (Paging) in HTML table in VB.NET. (VB.NET)
- Help with data grid please (VB.NET)
- problem with entering data in datagrid (VB.NET)
- insert data from one form into two diffent database table (JSP)
- converting and sending data problem (C#)
- converting data in a table into csv (comma separated) file (VB.NET)
- Datagrid to draw a table (C#)
Other Threads in the VB.NET Forum
- Previous Thread: database connection for sql server 5.0 and vb.net
- Next Thread: Maze Game
| Thread Tools | Search this Thread |
"crystal .net .net2005 30minutes 2005 2008 access account arithmetic array assignment basic binary bing button buttons center check code combobox component connectionstring convert crystalreport data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dosconsolevb.net dropdownlist excel file-dialog firewall folder ftp google hardcopy image images insert isnumericfuntioncall listview login math memory mobile ms navigate net networking opacity output passingparameters peertopeervideostreaming picturebox picturebox1 port print problemwithinstallation project reports" save savedialog searchbox serial soap sorting string table tcp temp text textbox timer toolbox trim update updown upload useraccounts usercontrol vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb.nettoolboxvisualbasic2008sidebar vb2008 vbnet view visual visualbasic visualbasic.net visualstudio web wpf





