Thanks for the help.
I've been reading about Impersonation, but I can't make it work 
Let me explain better my problem:
I have a ASP.NET portal running on Server A (with Windows Server 2003), where in a page I use a FileUpload Control. The selected file will be uploaded to a specific folder on Server B (with Windows Server 2003).
But, I need to authenticate to Server B or else I get an error about unknown user name or bad password.
The Impersonation is the better solution for my problem?
I can't put it working. When I add a line like this
<identity impersonate="true" userName="contoso\Jane" password="pass"/>
on my Web.config file I get an error about
Could not create Windows user token from the credentials specified in the config file. Error from the operating system 'Logon failure: unknown user name or bad password.
Is he trying to authenticate to Server A? If yes, how can I authenticate to Server B?
Thank you!