update - if I remove the runat="server" this does not happen...then how do I get the value of the dialog back to the code behind
Scenario goes like this. I have this code on my page
<input type="file" id="ID" runat="server" /> <asp:Button ID="btn" runat="server" Text="click me you chump" />
when I browse to a large file (200mb) and then click the button...mind you, there is nothing going on when you click other than a postback, I have a Connection Interrupted error in my browser. If I do this with smaller files, it's not an issue...the only problem is, I need to be able to get the location of the database to make a connection string.
I need to allow the user to browse to the directory, select the database, hit the button and prepare a connection string.
At the very least if someone could try this real quick and let me know if this happens to you also.
Thank Jim