Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get the current domain so if the page is http://www.domain.com/page.asp I need www.domain.com

share|improve this question

3 Answers

up vote 13 down vote accepted
Request.ServerVariables("SERVER_NAME")'

To be complete, one of my functions:

  function PageUrl
     dim sPort
     sPort = Request.ServerVariables("SERVER_PORT")
     if sPort = "80" then
        sPort = ""
     else
        sPort = ":" & sPort
     end if

     PageUrl = "http://" & Request.ServerVariables("SERVER_NAME") & sPort & _
                           Request.ServerVariables("URL") & "?" & _
                           Request.ServerVariables("QUERY_STRING")
  end function
share|improve this answer

One of the Request Servervariables (server_name?)

http://www.w3schools.com/asp/coll_servervariables.asp

share|improve this answer
<%= Request.ServerVariables("SERVER_NAME") %> – jessegavin Jan 27 '10 at 17:31

Put this before the end of your function to remove the ? when there is no querystring element, as a random ? at the end may not be what you want:

If right(PageUrl,1)="?" then PageUrl = left(PageUrl,len(PageUrl)-1)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.