Incoming MAC Address

Does anybody know how I can check the incoming MAC address from the people whos connect to my server?

View Replies


ADVERTISEMENT

Checking Incoming IP

How can I write an asp page, say, CHECKIP.asp that checks the incomin
requesting IP address and returns a protected page, based on th
checking result? That is, if the IP is a permitted address, the
presents a page, say, OK.asp. If the IP is not allowed, then send
REJECT.asp. Both OK.asp and REJECT.asp cannot be directly accesse
without going through the CHECKIP.asp.

View Replies View Related

ASP And Incoming Mail

I'm hoping to create a searchable web-based archive of a email list using ASP. Is there a way to get asp to connect to a mailbox and download mesages as text strings which could them be added to an SQL databse? Most of this is fine, it's just the retreival of messages that has me stuck at the moment.

View Replies View Related

Tracking Incoming Emails

I wonder how I would go about an email tracker using ASP. I need this for the database to capture all unsubscribe requests. For instance, someone emails "unsubscribe@domain" I should be able to catch that email, get who emailed it and record that to my unsubscribe table. Also I am using a a commercial mail server (ability mail server) and not the virtual smtp server which comes along with IIS.

View Replies View Related

How Can I Watch A Mail Folder For Incoming Email?

i want to build a trouble ticket system. i'd like to have a component
written in vbscript watch a specific mail folder for income email (something
like 'troubletickets@acme.com') the system should write the sender's email
address, time received, and message body to sql server, return a new trouble
ticket, etc. anybody know how to set this kind of thing up?

View Replies View Related

Permission Denied. Address 'zzz.zzz.z.zzz' Is Not An Allowable Remote Socket Address.

Permission 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)

View Replies View Related

Remove Email Address/ Pseudo Email Address

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.

View Replies View Related

Getting MAC Address Using ASP

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?

View Replies View Related

Ip Address &

i want to get the ipaddress,and the country name of a webpage
visitor,using asp.Net(C#).if anyone knows about it

View Replies View Related

How To Ban An IP Address?

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?

View Replies View Related

Mac Address

What is the best way to pull a pc's Mac Address from a web page?

View Replies View Related

Get IP Address

Currently, 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 Related

Getting MAC Address

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?

View Replies View Related

Get IP Address

How 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 Related

Getting IP Address

How can I retireve the IP Address in ASP as a string ?

View Replies View Related

Mac Address Of A NIC

How 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 Related

MAC Address'

How do you find a Mac (Hardware) address using vb scipt in asp?

View Replies View Related

Getting MAC Address Using ASP

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?

View Replies View Related

Get MAC Address

Is 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 Related

IP Address

I 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?

View Replies View Related

Get Ip Address

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 Related

Obtaining IP Address With ASP

In 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 Related

Grab ID# From Address Bar

I 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#?

View Replies View Related

Remote IP Address

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
%>

View Replies View Related

XML Package And IP Address

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.

View Replies View Related

Address Validation

Ive been looking everywhere for some simple street address validation. All I can find is email. Im not that great at working with string because I forget a lot =P but how can I check a string so that the format is like a street address.

str = "1015 Salem Street"

If street address is correct then
strsql(insert...
else
Invalid Street address

View Replies View Related

Address Bar Logo

In some site I found like this one I notice a logo in the address bar before the url. How can I do that using asp or some script?

View Replies View Related

Keeping The Just Web Address Not ?ID=122

how do i encode the URL to just stay at teh web address and not say ?ID=122 at the end?

View Replies View Related

How Can Get Client Ip Address

how can i find the ip address of a client?

View Replies View Related

Getting IP Address In ASP Page?

Is it possible to trace the IP address of the browser which launch the ASP
page in the server? I'm trying to do the tracing for security purpose.

View Replies View Related

Billing Address

i have a form with 2 sections: billing address and shipping address. the billing fields will be filled in from a db, corresponding to how the user has logged in. a drop down box will be filled from the db with the possible shipping addresses. how can i fire the form to fill the shipping fields from a selection in the drop-down?I don't have any code on this yet - trying to rough it out. is it possible?

View Replies View Related

Redirect New Address

i have a set of asp web pages that have been moved from an old to a new web server
i wonder what's the best way of redirecting users to the new address - i've put a redirect on the home page, but ideally i'd like every page on the old server to redirect to its equivalent on the new server if that possible
also, at some point in the future the old web pages will be deleted - is there a way of redirecting users that still attempt to access them ?

View Replies View Related

Get Visitors IP Address

How can I grab the IP address of a visitor to my site so I can store it in a
session variable?

View Replies View Related







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