This blog is for capturing and storing all the brainstorming and decisions made in the product lifecycle. From fleshing out product ideas, deciding on one (or two) products to produce, to designing the product. Also included will be revenue generation plans, advertising, marketing, support.
Hi!
I downloaded your IP Address Windows Vista Gadget.
You mention in your article that you use a simple ASP page to do a response.write of your IP address. I have been trying to make this work with my webserver with no success as of yet. Can you shoot me the code (eliminating any direct references to your server – I can respect your wish not to have a billion IP address hits) so that I can get your gadget to work fully?
Sincerely,
Matt Cowee
Owner
Quantum Consulting
Well, you sure figured out why I didn’t make that public
Here is the code.
well, it keeps blocking the code.
Wrap this in HTML, BODY and % tags
Dim UserIPAddress
UserIPAddress = Request.ServerVariables(“HTTP_X_FORWARDED_FOR”)
If UserIPAddress = “” Then
UserIPAddress = Request.ServerVariables(“REMOTE_ADDR”)
End If
response.write(UserIPAddress)