If I'm redirecting to a page like this:
project / webform2.apx
But I want you to direct me from the webform2 outside the project folder, how do I do it?
If I'm redirecting to a page like this:
project / webform2.apx
But I want you to direct me from the webform2 outside the project folder, how do I do it?
To return a folder in the addresses use two points ..
.
Example:
You are on this page:
project / webform2.aspx
If you have another folder, say "Project2" with a webform
in order to redirect yourself to that page, the url would be:
../Proyecto2/webform.aspx
That is, the two points return to the previous folder or to the parent location. There's a lot of information in Google about this.