Send files between different sites in ASP.NET C #

0

I'm developing an access area for the client where all site administration is done through it. All pages are created dynamically by making requests to a specific file on the client's site. Even the file inclusion forms are pointing to the client site and not to the access area itself, but when I try to give Request.Files on the client side it comes NULL. Is there a solution for this to work?

    
asked by anonymous 09.05.2015 / 00:29

1 answer

0

It works in the same way as an internal submit. Just remember to put the enctype='multipart/form-data' attribute, set the method='post' attribute in the form, and make sure that the submit button does not have the formmethod attribute.

    
02.07.2015 / 15:44