Its probably not the correct title for asking this question as when I searched it gave results of dynamic urls for downloads. Thats not what I want... (at least I think it isn't)
My issue is that I need to dynamically create a list of, say newsletters as an example, the list gets created using loops in C# code and Response.Write(). The source is from a database that just contains the location source of the newsletter, date and name. Basic output of the code is:
|News Letters
|Date: |Name: |View button: |Download link: |
|7/01/2013 |June News | [View] | [Download] |
|8/01/2013 |July News | [View] | [Download] |
more or less... The table is generated in a loop, so it can be any length.
How would I go about implementing a download for each individual news letter? The HTML code is just using an ordinary table and the view button is an href link to the souce.