URL Problem

Bill Humphrey

Active member
Joined
Apr 10, 2008
Messages
35
Programming Experience
Beginner
Hi

I'm using VS2008

I have a problem where the below URL works in my app on my PC but not when I deploy the app on the server.

lTransferURL = "/Menus/mainmenu.aspx"

Kind Regards
Bill Humphrey
 
I'm guessing here because you have not provided any useful information.
But I am guessing that on your server "/Menus/" does not exist, so you either have to use:

"~/Menus/mainmenu.aspx" if menus is in the root directory of your server OR
"Menus/mainmenu.aspx" if you are using a masterpage and this is a link on that page OR
if the two options above don't work, then use the full URL "http://mysite.co.uk/Menus/mainmenu.aspx" although I would recommend the first option first.
 
good stuff :)
 
Back
Top