Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HyperLink/LinkButton work on Dev Machine but not Web Server

Status
Not open for further replies.

jzelhart

Programmer
Feb 10, 2003
469
US
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
 
I found the problem. It was a permission issue. Sometimes you just need a good nights sleep.

Thanks for anyone that was researching this one...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top