Hide Page Url and Querystring
-
Hi all, I want to hide the page url and querystring in a html page. I have used the following URL, "http://mydomain/products/index.html?Mode=Edit" In my request is ,how to use the followning URL, "http://mydomain/products" only. Thanks in advance
-
Hi all, I want to hide the page url and querystring in a html page. I have used the following URL, "http://mydomain/products/index.html?Mode=Edit" In my request is ,how to use the followning URL, "http://mydomain/products" only. Thanks in advance
Firstly you have not used that as a way for admins to edit the page have you? Second there are 2 ways of doing that. If you only want to receive the value and do not require it to stay in the that url (like if you are going to place a cookie or have a session) then you can redirect the user. A PHP version of this is: header('Location: index.php'); or you can use the obvious approach and use frames (I don't think you need an example for this).
Brad Australian Save the Glass House (Fill in the complaint form to the ABC) Glass House Home Page (May as well get hooked while you still can)
-
Firstly you have not used that as a way for admins to edit the page have you? Second there are 2 ways of doing that. If you only want to receive the value and do not require it to stay in the that url (like if you are going to place a cookie or have a session) then you can redirect the user. A PHP version of this is: header('Location: index.php'); or you can use the obvious approach and use frames (I don't think you need an example for this).
Brad Australian Save the Glass House (Fill in the complaint form to the ABC) Glass House Home Page (May as well get hooked while you still can)
Or you can use Mod_Rewrite if you are using Apache (or a appropriate alternative in IIS)
-------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
-
Or you can use Mod_Rewrite if you are using Apache (or a appropriate alternative in IIS)
-------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
What would this achieve? I think that he wants to acknowledge user input, by simply re-directing could he capture it?
Brad Australian Save the Glass House (Fill in the complaint form to the ABC) Glass House Home Page (May as well get hooked while you still can)
-
What would this achieve? I think that he wants to acknowledge user input, by simply re-directing could he capture it?
Brad Australian Save the Glass House (Fill in the complaint form to the ABC) Glass House Home Page (May as well get hooked while you still can)
Oh my bad. I misunderstood the question :)
-------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!