Click here to Skip to main content
15,902,634 members

Comments by AlternativeThought (Top 2 by date)

AlternativeThought 9-Oct-12 4:25am View    
Moreover, my method is an ActionResult so I am obliged to return a my view. So if I put my code in the for loop, what am I supposed to return outwards the loop ?

Is it possible to write a method which call my Export() ActionResult method for each clientID in my table ?
AlternativeThought 8-Oct-12 9:13am View    
First of all, thanks for your reply.

I don't see how it would work, what clientID represent in your example ? Maybe if I have a list with all my clientID I could do something like that

for(int i = 0, i <= listClientId.Count(), i++) and then apply the code to generate a file on each item in the list. I thought about it, but I don't know how implement something like that...

And also, my clientID are strings, but this is not the main issue. I'm a beginner in asp so I don't have a large vision of all possibilities...