I have a form for saving images with a dynamic number of uploaded images. How can I implement a more unique name for images with minimal code (MVC)?
filenameFile = String.Format( "I{0}I{1}P{2}[64x64]{3}", instance.Item.Id, instance.Id, Settings.PropertyPictureId, fileExtension );
source share