CustomFileSystem: rootPath & rootUrl: the best practice?
Hello! I want to upload pictures to another server and show them from it. I want to use something like this
public class CustomFileSystem: PhysicalFileSystem
{
public CustomFileSystem(string imageUploadPath, string imageUploadUrl):base(imageUploadPath, imageUploadUrl)
{
}
}
CustomFileSystem: rootPath & rootUrl: the best practice?
Hello! I want to upload pictures to another server and show them from it. I want to use something like this
Is it right way to do it?
is working on a reply...