DotNetShoutout - Stories tagged with Uploading photos using C#
5
Shouts

Advanced Dotnet Tutorial: Upload an Image and an Audio file using C#

published 901 days, 13 hours, 21 minutes ago posted by learndotnet123learndotnet123 906 days, 20 hours, 43 minutes ago
Wednesday, December 01, 2010 5:37:54 PM GMT Friday, November 26, 2010 10:16:09 AM GMT
Image Upload: In this case, use  a FileUpload Control(Id:->FileUpload1), an ImageButton(ImageButton1) or you can use the Image,  a Button Control(Id:->Updatebttn) to upload the Image, Button Control(Id:->Addbttn) to add the Image in database, an image(which we want to upload) , add a new folder (Image) in the WebForm. Steps: 1. Create a table in the database(abc): 1create table Image12(3id int identity(1,1),4image1 varchar(100)5); 2. Coding for connectionstring in web.config 1 3. In My WebForm(Pag... (more)
category: Web Dev | clicked: 2 | comment | | source: advanceddotnettutorial.blogspot.com
tags: c sharp, Uploading photos using C#, ASP.NET
6
Shouts

Image Uploading and High Quality Resizing - C#

published 1141 days, 18 hours, 14 minutes ago posted by https://me.yahoo.com/agnitarang#7fca3https://me.yahoo.com/agnitarang#7fca3 1144 days, 1 hour, 11 minutes ago
Monday, April 05, 2010 12:45:02 PM GMT Saturday, April 03, 2010 5:48:07 AM GMT
Uploading of images and resizing (scaling) of them is a very common utility application. Various applications for this function are - Photo thumbnails, profile photos, stock photograph images like Flickr, etc. The System.Drawing namespace provides a built-in thumbnail creation function, but here is a code snippet to resize images preserving its original aspect ratio, maintaining high quality, and limiting the image sizes within prescribed maximum values. This article explains two concepts - 1. Uploadi... (more)
category: Web Dev | clicked: 4 | comment | | source: www.consultsarath.com
tags: ASP.Net 2.0, How to scale images without losing aspect ratio, Uploading photos using C#, FileUpload Control, System.Drawing, Resizing images using C#