| | |
how to upload a ms word file and store it in sql table
Please support our ASP.NET advertiser: Intel Parallel Studio Home
![]() |
Hi ,
you can do that by simply converting any file to an array of bytes - bytes[] (in c#) or bytes() (in vb.net) .
you can add an HTML control ( file )-which browses on file name - and let its name file_upload , right click and selct "run as server control" to use it in the c# or vb.net code.
in C#
int len=file_upload.PostedFile.ContentLength;
byte[] bData=new byte[len];
//fill array of bytes
file_upload.PostedFile.InputStream.Read(bData,0,len);
Note the field type of database (in Sql server) should be image .
You must send the value by a parameter and the value of the parameter will be the array filled .
param1.value=bData ;
then executeNonquery(); will insert the file .
I hope i could help you .
you can do that by simply converting any file to an array of bytes - bytes[] (in c#) or bytes() (in vb.net) .
you can add an HTML control ( file )-which browses on file name - and let its name file_upload , right click and selct "run as server control" to use it in the c# or vb.net code.
in C#
int len=file_upload.PostedFile.ContentLength;
byte[] bData=new byte[len];
//fill array of bytes
file_upload.PostedFile.InputStream.Read(bData,0,len);
Note the field type of database (in Sql server) should be image .
You must send the value by a parameter and the value of the parameter will be the array filled .
param1.value=bData ;
then executeNonquery(); will insert the file .
I hope i could help you .
Life Is A Big Code
Rushdy Ibrahim
Egypt
Rushdy Ibrahim
Egypt
![]() |
Similar Threads
- Upload a word file into mysql database (Java)
- Find word in file!! (C++)
- How to COmpare a word file and an XML file (C#)
- Reading pascal file and searching for a particular word in that file (Pascal and Delphi)
- When Users Upload *.txt file, i will get Total Points ,Points Per Game ,etc... (PHP)
- Variable URLs from SQL Table (ASP.NET)
Other Threads in the ASP.NET Forum
- Previous Thread: How to Incorporate Director?
- Next Thread: Web Service with ASP .Net
| Thread Tools | Search this Thread |
.net 2.0 3.5 ajax alltypeofvideos appliances asp asp.net beginner box browser businesslogiclayer button c# cac checkbox class commonfunctions compatible content contenttype countryselector courier dataaccesslayer database datagrid datagridview datalist deployment development dgv dialog dropdownlist dropdownmenu dynamic dynamically edit embeddingactivexcontrol fileuploader fill findcontrol flash flv formatdecimal formview gridview gudi iis javascript list listbox menu microsoft mouse mssql nameisnotdeclared news novell numerical opera order panelmasterpagebuttoncontrols problem radio ratings redirect registration relationaldatabases reportemail schoolproject search security serializesmo.table sessionvariables silverlight smoobjects software sql sql-server sqlserver2005 ssl tracking treeview unauthorized validatedate validation vb.net videos vista visual-studio visualstudio vs2008 web webapplications webarchitecture webdevelopment webprogramming webservice xsl youareanotmemberofthedebuggerusers




anybody help me plzzzzzzzzz 
