I have several elements in my web page generated by JavaScript. Here's an example of such content:
<input id="uploadfile01" type="file" onchange="change(1);" />
<input id="uploadfile02" type="file" onchange="change(2);" />
My question is: How can I interact with these elements in the server side, (Asp.net) after a post? (Since the elements were dynamically generated they do not exist in the original asp.net page)