I want to know how to create an image column in a SQL Server table and retrieve it in ASP.NET using VB.NET
create table Tbl(ID int primary key,Name varchar(20),Image ....)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You want to use the VARBINARY(MAX) to store this data.
As to the code side, here is a good, brief answer.
From the answer: