Upload Showing Blank
There is a client of mine who recently moved his site from another server to mine. His Upload script stopped working after he moved.
I am not very good at ASP so i am in need of so开发者_如何学编程me help to assist him.View code here.
I tried both with
Count = Upload.Save("/Pictures/my/"
and
Count = Upload.SaveVirtual("/Pictures/my/")
SOLUTION as per @Tumay's comment: "it was a permission issue, its fixed now" (sic)
try using
Count = Upload.Save("~/Pictures/my/"
精彩评论