I don't think you can bounce a single link-click-resulting request around like that...
You could try a little client-side code in your page to kick each of the links when the user cilcks the first, perhaps something along the lines of:
<script type="text/javascript">
function startFiles(num) {
document.getElementById('l
if(num < 5) setTimeout('startFiles(' + (num+1) + ');', 2000);
}
</script>
<a id="link1" href="file1.wma" onclick="startFiles(2);">F
<a id="link2" href="file1.wma">File 2</a>
<a id="link3" href="file1.wma">File 3</a>
<a id="link4" href="file1.wma">File 4</a>
<a id="link5" href="file1.wma">File 5</a>
Main Topics
Browse All Topics





by: Jon_RaymondPosted on 2007-05-14 at 15:11:47ID: 19088902
Capture the event of the first button to post back and then use code behind to get all the link.