| | |
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 activexcontrol advice ajax alltypeofvideos asp asp.net bc30451 bottomasp.net browser businesslogiclayer button c# c#gridviewcolumn checkbox child click commonfunctions compatible confirmationcodegeneration content contenttype courier css dataaccesslayer database datagrid datagridview datagridviewcheckbox datalist deadlock development dgv dropdownlist dropdownmenu edit expose feedback flash flv form formatdecimal forms formview gridview homeedition iframe iis javascript jquery listbox login menu microsoft mono mouse mssql multistepregistration news numerical objects order panelmasterpagebuttoncontrols parent radio ratings reportemail rotatepage save schoolproject search security serializesmo.table silverlight smartcard software sql-server sqlserver2005 suse textbox tracking typeof unauthorized validation vb.net video videos virtualdirectory vista visual-studio visualstudio web webapplications webarchitecture webdevelopemnt webprogramming webservice xml youareanotmemberofthedebuggerusers




anybody help me plzzzzzzzzz 
