HTML - Capturing The Url Requested
Hi, I want to know about the code which will help me do the following;
For example; a user types www.google.com on the address bar. On background it immediately displays the default page, may be index.html or index.htm or default.htm etc What I want to know is that is there any script to capture the URL i.e. read the URL typed? i.e. www.google.com in the default page? Thanks in advance. Bimlesh Changia Similar TutorialsI have just set up a subfolder on my website as a standalone service. I have done this several times before and it had always worked fine. This time, when I try to reach the subfolder, it asks for a password and says that the main folder is requesting this. If I type the password of my FTP access it lets me into the site. I have gone through all the properties of the Main Site and the Sub Site and cannot see why this is happening. If any one has seen this one before, I would be pleased to hear from you. Ladies and gents, I have a checkbox list, simple like this: <input type=\"checkbox\" name=\"ck[]\" value=\"1\" /> <input type=\"checkbox\" name=\"ck[]\" value=\"2\" /> <input type=\"checkbox\" name=\"ck[]\" value=\"3\" /> Now, I know how to process this information using the "SUBMIT" button. The problem is, the submit button is located far away from the checkbox. It's in a different divider and everything. I'd like to do this, on a seperate part of the page... <a href = process_checkbox.php>Click Here</a> Keep in mind it's in a seperate div. Is this possible? Thanks! I have a web window haviing many buttons like * Home * Free help * Tips * Dictionary * Forums * Links * Contact I need to store every clck on these buttons in an excel sheet. For example if I clck on "Home" button one record sholuld be created in excel sheet (1. home) next if I click on "Tips" another record may be created (2. Tips). Clicks on other than buttons should be ignored. Instead of an excel sheet an HTML document from my choices is sufficeint for me. Can anybody help? Hello geeks! i have a very simple problem, but cant solve by myself.. i have this html page on my site , which asks details like name , address etc but when people click on submit button the data entered on the page is not send anywhere , there is no html code written in that. i'll be much much happier if any one can also add captcha in my html code the direct link for my page www.linkinu.in/apply.html thanks I have been using the script below to make it so that a random image is displayed every time the page is refreshed or accessed. It has worked very well, but what i am wondering is does anyone know how to make this code adapt to embedding video urls, so a random video would be displayed from the list whenever the site was accessed or reloaded? I have tried several variations without luck. I am not really a coder so most of what i do is trial by error, but i was hoping someone else might be able to point me in the right direction. Thank you! Here is the code i am using for the random image generator: HTML Code: <SCRIPT language="Javascript"><!-- function image() { }; image = new image(); number = 0; // imageArray image[number++] = "<img src='First Image url' border='0'>" image[number++] = "<img src='Second Image url' border='0'>" increment = Math.floor(Math.random() * number); document.write(image[increment]); //--> </SCRIPT> |