CONVOCATION(Degree Certificate) link is avilable on university web site
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