I have a page in a root folder and another page in a files folder inside the root.
folder structure
->root->files->foo.aspx
->root->default.aspx
->root->foo.js
when i do a server.transfer from the page inside the files folder(foo.aspx) to the page in root(default.aspx), my javascripts(foo.js) doesn't load as page looks for the files in the subfolder(files). That is, the page looks for the javascript in ->root->files.
Is there a way to ask the server to look for javascript in the place where the file is??
PS:this is just an example not real scenario, I have different folders level that need to reference the file at root.
response.redirect is not the answer I am looking for.
Thanks in advance