Re: upload image problem!!!!!!!!

  •  04-05-2005, 5:45 PM

    Re: upload image problem!!!!!!!!

     Adam wrote:
    sunny,
     
     
    If you can't get this work, please check your web.config file and make sure you use impersonation in your web config.
     
    Step 1: Create a domain account which has the write permission to your UNC share
            Username: yourdomain/admin
            password="admin”

    I did exactly like you said
    in the web.confige

    <identityimpersonate="true"

    userName="***\***"

    password="***"

    />
    seems to me, we need use "\" not in the username use "/"
    need want to make sure, are you guys test this before? it work for anyone or just not me?
    someelse can help?

    To access resources on a UNC, your application must run under a domain enabled primary secuirty token, the easiest way to do this is to use impersonation in your web config:
     
    <identity
    impersonate="true"
    userName="yourdomain/admin"
    password="admin”
    />


View Complete Thread