hello
dear friends my problem is that i want to save images that
is pictures in SQL server using vb.net can any body help me
to do so please
Answer Posted / govind
step1) place one fileUpload control from tool box
step2) in it's Button click event
If FileUpload1.PostedFile Is Nothing Then
Response.Write("no file posted")
Else
Here Convert that image as byte and pass it
to function.
Dim con As SqlConnection
Dim cmd As SqlCommand
Dim ds As New DataSet
con = New
SqlConnection(ConfigurationManager.AppSettings("connectionString"))
cmd = New SqlCommand("insert into tablename
values(@image_in), con)
Dim imageByte(FileUpload1.PostedFile.InputStream.Length) As
Byte
FileUpload1.PostedFile.InputStream.Read(imageByte, 0,
imageByte.Length)
cmd.Parameters.AddWithValue("@image_in",
imageByte)
con.Open()
cmd.ExecuteNonQuery()
con.Close()
Response.Write("file is inserted")
End If
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Can you please explain the difference between dispose and finalize()?
thak you Mr Govind for replying to my question. My next question is that how to retrieve image stored in an SQL server table and assign it to any image control or picture control using VB.net
What is late binding?
What are the difference between dispose(), close(), exit(), end()?
What are all the differences between dispose and finalize()?
What is strong name in .net assembly?
What is globalization?
What is the diff between vb mdi form and .net mdi form?
Can you please explain the difference between int and int32?
How do you call a stored procedure in Visual Basic?
Write a program to find all text files in a logical drive and return the count of the number of files?
Name the two main parts of .net?
What is the difference between c# and vb.net?
What is the source code for display the picture in button click event?
How does vb.net achieve polymorphism?