The original thread for this is here:
http://groups.google.ca/group/micro...r+using+ASP.net&rnum=2&hl=en#a73ff8a2b1d29038
Progman, in your first thread, people gave you the answer. I don't
want to offend you, but if you haven't figured it out, you shouldn't be
programming. Also, a quick and easy search on Google for "Asp.Net get
IP address" or something similar will reveal some good results to tell
you how to get the IP address. What you seem to want is someone to
write the code for you. Typically these groups provide paths to the
answer, you have to walk it yourself.
Now in your second thread you mention "I hope to identify the users
computer so they dont create multiple accounts. "
Hopefully peoples responses made sense. It is not programmatically
possible to stop people from creating multiple accounts. Because
person A may end up with person B's IP address, if you block IP address
from making another account, you just stopped person A from creating an
account because person B already made one.
You can store a cookie on a person's machine to track them, and then
check the cookie to see if they signed up already, but most people do
not allow cookies or just delete them.
You could search for Macromedia Flash stored objects which can mimic
cookies and it is harder to delete these. You'll have to talk to a
Macromedia user group for more info on that.
Alternatively, you can take a non programming approach and have people
sign up supply you with there home address and you can "snail mail"
them a password. (You know, the non-electronic way of mailing someone
a letter). But then some people have more then one house address they
could use, so you still can't 100% know if they already have an
account.
Using all of these methods together would be your best bet.