TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Shahbaz Kaware
NA
535
31.4k
Change the code from old to new
Mar 20 2017 4:57 AM
string text1 = this.FileUploadFront.FileName;
string str8 = this.Session["ProductIDA"].ToString();
this.Ade = this.Session["ProductIDA"].ToString();
if (this.FileUploadplotfullP.HasFile)
{
string filename = base.Request.PhysicalApplicationPath.ToString() + ConfigurationManager.AppSettings["UploadSlidePhotoPath"].ToString();
string str10 = str8 + str5;
filename = filename + str10;
this.FileUploadFront.SaveAs(filename);
str = "SlidePhoto/" + str10;
ConfigurationManager.ConnectionStrings["ConnectionString"].ToString();
connection = new SqlConnection(this.strConnectionstring);
connection.Open();
this.cmd = new SqlCommand("update TBL_PRODUCTDETAILS Set PhotoFront='" + str + "' where ID ='" + str8 + "' ", connection);
this.cmd.ExecuteNonQuery();
}
--I have this previous code and i want to change like this code as following
try
{
Byte[] bytes = null;
if (FileUpload1.HasFile)
{
string filename = FileUpload1.PostedFile.FileName;
string filePath = Path.GetFileName(filename);
Stream fs = FileUpload1.PostedFile.InputStream;
BinaryReader br = new BinaryReader(fs);
bytes = br.ReadBytes((Int32)fs.Length);
}
using (SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString))
{
SqlCommand command = new SqlCommand(
"INSERT INTO tblImage (ImageName, Image) " +
"Values(@ImageName, @Image)", con);
command.Parameters.Add("@ImageName",
SqlDbType.NVarChar, 20).Value = txtImageName.Text;
command.Parameters.Add("@Image",
SqlDbType.Binary).Value = bytes;
con.Open();
command.ExecuteNonQuery();
}
}
catch (Exception)
{ //error }
}
Reply
Answers (
4
)
Hw cn insert commt,if txtbx btn r in datalist
capture image through webcam and store in database