I need to download a list of pdf files, but I need to send the list of name files to a method as parameters in code behind to handle these. I tried with Page Methods, and Web Methods, but since these are static I can't use Response.
Then I read that the way I have to do it or one way is using a web service, since the methods can be non static. But it gets little messy or tricky since I only need to call a method in code behind being non static.
I have never used Web Services and I don't Know the level of complexity in the code that I need since I only need the mentioned method.
I just tried Page and Web method and it was kind of simple. Could you guide me in this situation, I have not found a clear example. I want to call the method from javascript.
Thanks a lot, Regards.