Hi Chrish,
I get this error when I inhereted this class RenameFiles from FileUploadStreamProvider.
"'Krystalware.SlickUpload.Storage.FileUploadStreamProvider' does not contain a constructor that takes 0 arguments"
below is my code snipet.
public class RenameFiles : FileUploadStreamProvider
{
public override IEnumerable<string> GetRenameSequence(string fileName)
{
string newName = new Guid().ToString() + fileName;
return base.GetRenameSequence(newName);
}
}
Can you suggest me some thing on this ?
Thanks