Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6786509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:15:14+00:00 2026-05-26T17:15:14+00:00

I use Get Clicky for my web analytics and there is an API for

  • 0

I use Get Clicky for my web analytics and there is an API for generating custom reports.

The output of the request is sent back in either XML CSV JSON or PHP.

My site uses ASP and I would like to know if I request the output to be sent back to my page as XML how do I (can I) display it.

This is an example of a response from the Get Clicky API.

<response status="ok">
<type type="visitors">
<date date="2011-11-10">
<item>
<value>54</value>
</item>
</date>
</type>
<type type="actions">
<date date="2011-11-10">
<item>
<value>102</value>
</item>
</date>
</type>
<type type="actions-average">
<date date="2011-11-10">
<item>
<value>1.9</value>
</item>
</date>
</type>
<type type="time-average">
<date date="2011-11-10">
<item>
<value>209</value>
</item>
</date>
</type>
<type type="bounce-rate">
<date date="2011-11-10">
<item>
<value>39</value>
</item>
</date>
</type>
</response>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T17:15:15+00:00Added an answer on May 26, 2026 at 5:15 pm

    Best way to handle this is with some XSLT.

    I’ll start with the assumption that you’ve got an MSXML DOM loaded with the XML you included in your question.

    Here is the code to take that and generate some HTML output:-

    Dim xsl : Set xsl = CreateObject("MSXML2.DOMDocument.3.0")
    
    xsl.async = false
    xsl.load Server.MapPath("/ClickyResponseRender.xsl")
    
    Response.Write yourLoadedDOM.TransformNode(xsl)
    

    Here is some basic content for the “ClickyResponseRender.xsl” file that the above expects to be in the root folder.

    <?xml version="1.0" encoding="utf-8"?>
    
    <xsl:stylesheet version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    
      <xsl:output method="html" />
    
    <xsl:template match="/response">
        <html>
        <body>
          <table>
            <thead>
              <tr>
                <th>Type</th>
                <th>Date</th>
                <th>Value</th>
              </tr>
            </thead>
            <tbody>
              <xsl:apply-templates select="type" />
            </tbody>
          </table>
        </body>
        </html>
    </xsl:template>
    
      <xsl:template match="type">
        <tr>
          <td>
            <xsl:value-of select="@type"/>
          </td>
          <td>
            <xsl:value-of select="date/@date"/>
          </td>
          <td align="right">
            <xsl:value-of select="date/item/value"/>
          </td>
        </tr>
      </xsl:template>
    
    </xsl:stylesheet> 
    

    This just generates a simple table listing each type with its date and value. However I suspect the schema may be a little more complex (e.g multiple dates per type) so the XSL would need to be modified to match the needs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I use a get request to receive a list of a data from a
In Python I can use get method to get value from an dictionary without
I use file_get_contents(http://www.mydomain.com); to get the content. Then I need to search through it
When I use dns_get_record within a php script to get a list of DNS
when I use MySQLdb get this message: /var/lib/python-support/python2.6/MySQLdb/__init__.py:34: DeprecationWarning: the sets module is deprecated
lets say i use jquery.get to retrive a website to string and how am
Which function can I use to get the content of a plain text file?
How is it possible to get/use/return a thread from an execute queue ( =
Normally I would just use URL GET parameters but CodeIgniter doesn't seem to like
I'm still trying to get my head around the correct way to use Azure

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.