FY BCA EXAM TIIME TABLE IS AVILABLE ON NMU WEBSITE. OR VISIT FOLLOWING LINKhttp://exam.nmu.ac.in/Exam%20Time%20Table/Commerce%20and%20Management/FYBCA(SEM-I)%20(NEW)(60-40)%20EXAM.%20NOV.-2014.pdf
Uploading Image to Sql Server Image Datatype in asp.net using fileupload Control
Uploading Image to Sql Server Image Datatype in asp.net using fileupload Control Byte[] imgbyte = null; if (FileUpload1.HasFile) { string fileName = Path.GetFileName(FileUpload1.PostedFile.FileName); FileUpload1.PostedFile.SaveAs(Server.MapPath("~/UserPhoto/") + DateTime.Now.ToString("_MMddyyyy_HHmmss") + fileName); photo = "UserPhoto/" + DateTime.Now.ToString("_MMddyyyy_HHmmss") + fileName; string fpathPhoto = Server.MapPath(photo); FileInfo fInfo = new FileInfo(fpathPhoto); long numBytes = fInfo.Length; //Open FileStream to read...
Comments
Post a Comment