Re: Problem while setting the Image Directory programatically

  •  07-06-2005, 2:35 AM

    Re: Problem while setting the Image Directory programatically

    Thanks Adam for the quick post. It did helped me resolving my problem as to READONLY. Though there was one more thing that I was not adhering to that is to change
     
    MyPath = Server.MapPath("/Uploads/" & UserId & "/")
     
    to
     
    MyPath = "~/Uploads/" & UserId & "/"

    It is now working smoothly as expected.
    Thanks for your help.

    Rohit
View Complete Thread