About

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.

4 comments to About

  1. Matt Cowee says:

    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

  2. Michael says:

    Well, you sure figured out why I didn’t make that public :)

    Here is the code.

  3. Michael says:

    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)

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s