Certain IP Address In Certanin Country
How do you know that a certain IP add is from a certain country? Can asp do this?
View RepliesHow do you know that a certain IP add is from a certain country? Can asp do this?
View RepliesPermission denied. Address 'zzz.zzz.z.zzz' is not an allowable remote socket address.
What is the significance of this error, and what should be looked into to fix the problem?
(if this is of relevance: My sandbox is localhost.. so zzz.zzz.z.zzz is internal ip)
how i can tell . for exmple .my for malaysia,.id for indonesia and how i want to know for all country in the world.. hope u understnd for interrupt.
View Replies View RelatedFor web trends, i need to display country name with the help of IP. How can i do this with out any dll registering or installations in ASP?
View Replies View RelatedDoes anybody know how to determine a user's country or LCID in an asp page?
I've found some articles on using:
Request.ServerVariables("HTTP_ACCEPT_LANGUAGE")
but somehow this doesn't seem like a foolproof method to me.
How i can know the country of the visitor of the web?
View Replies View RelatedHow can i obtain Clients Country
View Replies View Relatedwhat is the easiest way to get the clients country, wthout asking them for it is there a HTTP request?
View Replies View RelatedI am trying to set page content to reflect where the user may come from.
Is there a fairly simple way to tell where web page requests are coming
from? (Site is on a Win2003 server)
i.e. something like (I know it not real)
<%If Request.ServerVariable(".HTTP_USER_ COUNTRY")="UK" Then %> ...
in my drop down dont want to show country names like United States and Canada but its still showing Code:
nusa="United States"
ncanada="Canada"
Set rs = Server.CreateObject("adodb.RecordSet")
strcountry="SELECT * from tblCountries where CountryName Not In ('"& nusa & "," & ncanada & "')"
rs.Open strcountry,cardconn, 2, 2
is the syntax ok
Does anyone know of a good ASP script that does the following:user selects country/regionredirects to page/site based on selectionremembers this preference for future visits.
View Replies View RelatedIs it possible using ASP to detect the country that a visitor to your site is in?If so, could you please point me in the direction of a site which tells you how it is done?
View Replies View Relatedhow I can check what country the user is visiting from? I know how to check the browser type etc. but not where the person visiting my site is actually resident. I'd like to know how to check this both in ASP and Javascript if possible.
View Replies View RelatedI've been to a few websites where it displays the town, state (if USA),
country I'm browsing from. Now, I know that detecting country is easy, but
how do you determine the town?
What ASP components do this?
has anyone got a function or subroutine which will remove blank out or remove email addresses.
i've wrote a function which will remove valid email addresses, it's pseudo addresses such as "blah @ blah.com" or "blah_at_blah_dot_com" or "blah_at_blah_._com"
the function is basically to stop users posting an email address in a message.
It it possible to get the MAC Address of the client PC using ASP. Also can I
get the HDD ID/Serial Number also using asp?
i want to get the ipaddress,and the country name of a webpage
visitor,using asp.Net(C#).if anyone knows about it
Is it possible to ban an IP address from global.asa, or by another method?
On a shared server, I'm seeing someone from China that appears to be trying to access my
site illegally (trying to access server root via cgi-bin).
Can I test for the user from global.asa and then execute a Response.End? Or is there
another way?
What is the best way to pull a pc's Mac Address from a web page?
View Replies View RelatedCurrently, I want to get the IP address from giving hostname in the Active Server Page. I know the hostname, I want to get the IP address via hostname in an ASP page.
View Replies View RelatedIt it possible to get the MAC Address of the client PC using ASP. Also can I get the HDD ID/Serial Number also using asp?
View Replies View RelatedHow can I get the IP Address of the system that the client uses through ASP. I used Request.ServerVariables("REMOTE_ADDR")to get the IP Address, but that always prints 129.0.0.0 as IP address but that's not the IP Address of the system. Tell me if there is if there is any other alternative.
View Replies View RelatedHow can I retireve the IP Address in ASP as a string ?
View Replies View RelatedHow do i pick the MAC address of a network card using ASP. Is it possible to identify a system e.g the mother board ID or processor using ASP or any other object.
View Replies View RelatedHow do you find a Mac (Hardware) address using vb scipt in asp?
View Replies View RelatedIt it possible to get the MAC Address of the client PC using ASP. Also can I get the HDD ID/Serial Number also using asp?
View Replies View RelatedIs it possible to check the Physical Address of the computer logged on the page in it's format like 00-08-E6-54-E4-9F ?
View Replies View RelatedI tried the followin code in all PCs at my organization
<%=Request.ServerVariables("REMOTE_USER")%>
but it returned the same IP address everywhere. How to get the actual IP address of one's machine?
I would like to make ASP code that would put IP ADDRESS of person who visits my page into a variable . sth similar to IP = request.form("IP ADDRESS") ... just i would like to request "IP ADDRESS" and put it into "IP" .
View Replies View RelatedIn reference to an e-commerce website, is it possible (using Active Server Pages) to obtain the IP address of a particular user? I would like to get an address that uniquely identifies the user. If so, how would that be done?
View Replies View RelatedI bet this is a simple one, but I just don't know.
www.mydomainname.com/12345
How do I grab the 12345 in my ASP page as the ID#?
I'm trying to get remote ip address and local ip address
of the user (i.e. machine name) but i couldnt find out it.
however i can see the public remote ip address.here is
the little code that i have written..
<%
For Each Item in Request.ServerVariables %>
<tr>
<td><%= Item %></td>
<td><%=Request.ServerVariables(Item)%></td>
</tr>
<%
Next
%>
I have been developing an online payment system using classic ASP
which uses Msxml2.ServerXMLHTTP to submit an XML package to a 3rd party payment
system. The website the payment system is part of is one of many on a
Server 2000 / IIS5.0 installation. Each web site on my server has its
own IP address. The 3rd party payment system is hosted on another
server not under my control.
The issue I have is that when the XML package is submitted, the 3rd
party system is not registering the correct IP addresss for the
originating request from the website, it is registering the 'Core' or
first IP address on the server. The originating IP address is part of
their authentication model and so the XML submission is failing
because the wrong IP address is being passed through.