How can i store the images to sql server database from asp.net webpages(using vbscript only)
-
hi for opening the image file location in our disk, i put the file field control.. into the webform. plz tell the procedure to store the image from that file field control to the sql server database. thank you
-
hi for opening the image file location in our disk, i put the file field control.. into the webform. plz tell the procedure to store the image from that file field control to the sql server database. thank you
Hi there is two method to show image dynamiclly in the web screen 1. storing filepath in the database upload the file into a dir (image) when u want show the file use following code
../image/<%=filename%>
2. storing the image as image datatype image Variable-length binary data from 0 through 231-1 (2,147,483,647) bytes. bye timcyspet -
Hi there is two method to show image dynamiclly in the web screen 1. storing filepath in the database upload the file into a dir (image) when u want show the file use following code
../image/<%=filename%>
2. storing the image as image datatype image Variable-length binary data from 0 through 231-1 (2,147,483,647) bytes. bye timcyspethi i have created one stored procedure for this, the code is below, before that i have created the table create table save_image ( im image null ) create proc sav @img image as begin insert into save_image (im) values (@img) end now, what is code for storing the image to sqlserver database (as a image data type).
-
hi i have created one stored procedure for this, the code is below, before that i have created the table create table save_image ( im image null ) create proc sav @img image as begin insert into save_image (im) values (@img) end now, what is code for storing the image to sqlserver database (as a image data type).
-
hi i have created one stored procedure for this, the code is below, before that i have created the table create table save_image ( im image null ) create proc sav @img image as begin insert into save_image (im) values (@img) end now, what is code for storing the image to sqlserver database (as a image data type).