First I had a HyperLink with a NavigateURL set to the string below. Then I tried a Link Button that executes the code below.
This works when ran from Development Maching and when connecting to that machine from other computers. I deployed it to the Web Server and everything but this works great. This just starts processing and won't get past halfway on the scroll bar and eventually gets a CGI Timeout.
What I am trying to do, is to allow customers to download a new winzip self executing file that has a new exe.
My Code on the Button:
Dim strFile As String = "Downloads\" & mstrSoftwareUpdate & "DocUpdate.exe"
Response.Redirect(strFile, False)
Any ideas would be greatly appreciated.
Thanks,
Jennifer
This works when ran from Development Maching and when connecting to that machine from other computers. I deployed it to the Web Server and everything but this works great. This just starts processing and won't get past halfway on the scroll bar and eventually gets a CGI Timeout.
What I am trying to do, is to allow customers to download a new winzip self executing file that has a new exe.
My Code on the Button:
Dim strFile As String = "Downloads\" & mstrSoftwareUpdate & "DocUpdate.exe"
Response.Redirect(strFile, False)
Any ideas would be greatly appreciated.
Thanks,
Jennifer