1
vote
3answers
527 views
Best practice for uploading and image file with Django Forms (Django 1.0)
Hi friends, could you please help me to get image upload working on a view with django forms
Models.py
class User_Profile(models.Model):
user = models.OneToOneField(User, unique=True, …
1
vote
3answers
224 views
Pass Image from Flash to ASP.NET
Quick version:
How do I get an image that was generated on the users browser back to the server?
The current plan is this:
1.) The Flash developer will convert the bitmap to JPEG
2.) He will then …
