Finding Out The Path Of Current Page

Is there an easy way to find out the path of the current asp page? When looking at http://localhost/images/listing.asp I want to be able to extract "http://localhost/"

View Replies


ADVERTISEMENT

Finding Current Directory?

How can I find out the full directory path (i.e. c:path ofile) of a file? I'm logged into a server and the of course, I have an FTP directory root, but I need to know the absolute path.

View Replies View Related

Finding A Path

Is there something similar to PHP's php_info command to tell me all about the server? I need to find the actual path where the site resides.

View Replies View Related

Finding Absolute File Path On Server?

I am trying to create a log of certain events on the website by writing them
to a text file. The logging code is in an "included" file that is inserted
into the pages that need to be monitored. Currently, the target text file is
just specified in the FSO MapPath as "thelog.txt", so it writes the log to a
text file within the same folder as the web page.

The problem is that I don't want to grant browsers Write access to my pages
folder, so I need to have a separate directory to hold the log text file
that browsers can have Write access to. The web site is hosted on a shared
server that I do not have direct access to. In the past, occasionally an
error has popped up that states the exact location, but I can not get that
to repeat. I know it is something like "D:customersmyuseridwww"

How can I find out the actual location on the server so I can use an
absolute path to write all the logs to one file in one location?

View Replies View Related

Finding Absolute Path To Script On Linux System

i need to find the absolute path to a folder (/home/httpd/ etc....) on a linux system. is ther a script that i can uses that will tell me the absolute path to it. then i can chnge to to the folder.

View Replies View Related

Get The Current File Path

In my ASP file, located at the "/test" directory of the website, I include another ASP file as below.

<!--#include file="../templates/_header.asp"-->

Inside the _header.asp file, how can I get the current file (_header.asp) directory? I need to get the web relative/absolute directory of _header.asp, but instead even if I can get the physical directory location of that file should be fine.

I tried Request.ServerVariables("") with almost all the variables, but none gave me what I wanted. This is necessory, becase the location of _header.asp and the file which includes that can vary.

View Replies View Related

Finding Links On A Page

I'm looking for an ASP/VBScript function that would accept a string of text, use a regular expression to find all of the links within that text, and output an array of the links with the text that was linked (i.e. between the "a" tags).

Does anyone have such a thing? Right now I would even settle for just the regular expression pattern. I've done some searching and haven't found what I'm looking for. With some trial and error I could probably create it but I was hoping someone else might be willing to share.

View Replies View Related

Finding Link Of Previous Page

i want to know the previous page address.ie,from which link the current page come here.

Is there any function in ASP to find that........?

View Replies View Related

Current Page

how to print or get the name of current page using ASP

View Replies View Related

Using ASP To Get Current Page

I'm not sure if someone has requested in the past (I know I've looked for a solution for a while) but I've just developed a very neat way of getting the current page name in ASP:

url = request.ServerVariables("URL")
page = right(url, len(url) - instrrev(url, "/"))

I've finally found a use for the instrrev function

View Replies View Related

Current Page Url

How can I retrieve the current page url(and parameters/arguments) using ASP code? The current page is an asp search results page so the url includes the page name and the criterion(sorry I don't know what they're called) I had the 'post' method tag on the end.

I need to get it and store it so I have an easy way of getting back to this page at a click of a button a few pages down the track. I've tried using location and history but I'd like to manage it myself.

View Replies View Related

Get The Name Of The Current Page

is there a command in asp to get the name of the current page?

furthermore, is there a way to retrieve the name of the current page within
an 'included' file (not the name of the included page, but the name of the
page that is including the file)?

View Replies View Related

URL Of Current Page

I am using an include for a navigation bar, This nav bar appears on many different pages and the help facility a button on the navigation barneeds to launch a help box relating to the page it is included in.

The help files are .html but the file names relate directly to the asp page in which the navbar is included. To get the javascript in the navbar to correctly display the correct help window, I need to get at the page name. I am using

dim thisPage
thisPage= request.ServerVariables("URL")

This will hopefully return me the full file path of the page that the navbar is included in. I then need to take the filename out of this URL and remove the .asp from the end so that i can use it in my javascript function to open the corresponding .html help file.

View Replies View Related

Get Current Page

I'm just working on this big newsletterscript, wich will be working with templates (preformatted html code), stored in the database. I've already started but i'm still looking for suggestions or methods to do this more easily then i'm up to right now. So when you you chose another design your content will be loaded in this other template/ html design.

Right now i'm having troubles with the fact that i have a page; nice formatted with the right content! Generated from asp visual output in pure html in my browser. What i want to do now is to get this page structure/ content as it is shown in my browers (html output) INSERTED into MS Access.

View Replies View Related

Printing Current Page And Another Page

Is there any way I can print the current page(page1.asp) and another
page(page2.asp)from the current page(page1.asp).

View Replies View Related

Can't Get Current Page After Transfer

I'm trying to add logging to my web application, but I found a strange problem. Whenever I execute a Server.Redirect(Page1.asp) I can use the request.ServerVariables("SCRIPT_NAME") to get the current page name. However, if I use Server.Transfer(Page1.asp), the value of the server variable equals the refering page (In this case default.asp). How do I get the value of the working page regardless of the transfer method.

View Replies View Related

Check Current Page

I want to check if the name of my current page is index.asp for example, to specify a certain css class but this doesn't work

<li <% if Request.ServerVariables("SCRIPT_NAME") = "index.asp" then Response.write "class=""here"""%>>

What's the proper method?

View Replies View Related

Saving Current ASP Page

I would like to know how I can save my current ASP page
to the server side in html file format.
Then I would like to stream it back to the client side.

View Replies View Related

Current Page Title

I am trying to display the current page that is being view with asp.The line i am tryng to add is "You are editing: CurrentPageName".I can't find any code examples to help with this.

View Replies View Related

Request Current Page Name

i want to link to another page and include the current page as a querystring in the filename like .ASP Code:

<a href="newpage.asp?previous=currentpage.asp">my link</a>
which is a simple matter of explicitly writing it

however, if the script is #include d on every page (so i don't know which page is using it), how can i reference the current page and pass it to my link.

View Replies View Related

Save Current Page

is there an easy way to save the current page in asp through code. for example if I dynamically created a page and then wanted to save it without requiring the user to do anything.

View Replies View Related

Save Current Page

I want to be able to save a file created by an asp file somewhere. Or even email the file if possible. I've searched google extensively and only found people with the same problem but no answer. He solved the problem but didnt post the solution.

View Replies View Related

Page 2 - Find Out Your Web Page's Path

Well, it was my experience that the generated stuff didn't work, but I didn't want to make a definitive statement and have someone more knowledgeable come through and tell me how wrong I was.

So now I'll agree: DON'T use Word to generage your code. It is a very bad idea, and for what (it looks like) you're trying to do, it is so easy that writing it in notepad would only take a few minutes, and be much nicer.

View Replies View Related

How To Get Current Page As Attachment In Mailto Tag

i have a page and i have mailto tag in it. when i click on that i has to get that page (page containing mailto tag) in the outlook express body . or the URL of the current page in body of the mail.

View Replies View Related

Page Path

Are there any way that I can display the current page's path in the browser's address bar?When I use frames the path dont display in the bar anymore.

View Replies View Related

Send Email With Link To Current Page

How would I send an email to someone from a webpage with a link to the
current page? I've seen this where you can put in your email, the person's
email that you are sending teh page to, a subject for the email, and a
message along with the link.

View Replies View Related

File Path Of Currently Executing Script/Page

Is there a way to determine the filepath of an ASP script being executed, like so? First file contains:

<%
For Each x In arrNuggets
Server.Execute "/nuggets/" & x & "/default.asp"
Next
%>

The executed file, default.asp, needs to be able to figure out what it's parent folder name is.

Request.ServerVariables("SCRIPT_NAME") only returns the name of the first initial page loaded, and nothing about the page currently being executed.

View Replies View Related

Skip Out The Name Of The Page From The Physical PATH String ..

If the physical path of a page is : " e:facecgi_bindetails\_Nviews.asp "

and i want to remove "\_Nviews.asp" portion from this path ...means whenever the page refreshes,no matter what the name of the page is ....the last portion of the name of the page with slash must skip out from this path string .....how can i do this while using VBscript Functions.....like using Split(),RIGHT(),LEN(),LEFT()...etc..

View Replies View Related

Physical Path Of Any Page Hosted On Other Server

May i get the physical path of any page hosted on other server?

View Replies View Related

Recordset To Only Contain Current Items (i.e. If Date Of Item Is Past Current Date)

I have a noticeboard that the user inputs items into. One of those is the date of an event. Once that event has passed I want it to disappear from the page.

So I need to do a comparison with current date to the date in the "datestarted" field. My table is called "notices." Using Access and ASP VBscript.

View Replies View Related

Physical Path & Virtual Path

I have problem with physical path & virtual path on the server.

<!--#include virtual="country/inc.bottom.asp"-->

In this script it is working.

In all the file i have <!--#include file="../ar-inc.top.asp"--> this script.

I have about 10,000 files in the website.

View Replies View Related

Finding Age

I have a database with date of births stored dd/mm/yyyy (english dating
system) and =date() returns a date in the same format in my server.
how do i find the persons age using these two pieces of date.

View Replies View Related

Finding Word

i want to make a program to find out and highlight a particular word on the browser using ASP and javascript.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved