DebbieDavis
Programmer
Hi there, here's a good one. I have a development server and a production server. Dev is winnt and prod is win2003. I have a delete link and after it deletes the records it redirects like this:
response.redirect "?select=81"
which returns in the address line: default.asp?select=81
simple enough, works fine on dev. On prod, however, it redirects but keeps some of the querystring from the previous link, so in the address line, it looks like this:
default.asp?select=81?deletethis=
why is it doing this and how can I fix this? Thanks a million for your thoughts!!
response.redirect "?select=81"
which returns in the address line: default.asp?select=81
simple enough, works fine on dev. On prod, however, it redirects but keeps some of the querystring from the previous link, so in the address line, it looks like this:
default.asp?select=81?deletethis=
why is it doing this and how can I fix this? Thanks a million for your thoughts!!