Website tracking ASP.NET?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Website tracking ASP.NET?

    Does anyone know if there are any books that talk about building a website
    tracking program for asp.net and C#? Or even any good resources on the web
    that talk about this.

    Thanks for any info,
    D.


    DDK Guest

  2. Similar Questions and Discussions

    1. Free Website Templates, Website Tools & Softwares
      Hi... You are desgining a website and finding it difficult. Dont worry.,Just login to http://www.monstertemplate.co.in, it is a website which gives...
    2. InDesign tracking vs. Quark tracking?
      Hi Anne Marie, I would describe letter, word, and glyph scaling parameters as things the paragraph composer can fuzzy-logic work with. Fuzzy logic...
    3. Tracking IP
      Ok, I have website hosting on a server. Is there a way for me to write a program that will track what IP addresses are hitting me site and write them...
    4. Tracking
      Is there a way to track what a user does on the CD and what is a way the information can be sent to say a website to keep stats of what options have...
    5. Homemade website traffic tracking reports?
      I'm looking at the various free and paid website traffic tracking options available. None seem to do quiet what I want and the rest are too...
  3. #2

    Default Re: Website tracking ASP.NET?

    When you mention website tracking, I'm assuming you're referring to tracking
    where a user goes on a site.

    You can do this with good analysis software and logs.. or.

    Scenario A. All your pages are dynamic and are using a serverside processing
    language like ASP.NET
    Set a cookie if it isnt already created when they come to your site for the
    first time.
    Then every page checks to see if the cookie is there. IF it is, it'll store
    some hash of information about the user and
    the time.

    Scenario B. You want to gather ifnormation about a user on any page..
    Create a ASP.NET application that writes out an Image instead of HTML. Call
    this image at size 1x1 on every
    page using the <img> tag. In your code do the same thing from scenario A.

    Hope that helps

    Rahul Singh

    anant systems, inc. | making information work for you

    anantsystems.net | ioserver.net [Developer and Business .NET Hosting]



    "DDK" <ddkennard@hotmail.com> wrote in message
    news:ODxrX1zUDHA.360@TK2MSFTNGP11.phx.gbl...
    > Does anyone know if there are any books that talk about building a website
    > tracking program for asp.net and C#? Or even any good resources on the
    web
    > that talk about this.
    >
    > Thanks for any info,
    > D.
    >
    >

    Rahul Singh Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139