R
Rhonda
Hi,
I am trying to query a web page on our company intranet.
This page contains info. on the billing meters of the
Xerox Documnet Centers we use. For some reason, only the
460st and 480st models don't pull back the data. I looked
at the source code and noticed that these pages use
javascript. I don't know if that has anything to do with
it or not.
This is a snippet of the code:
<script language="JavaScript">
<!-- Hide from old browser
// This variable forces display of the counter even if it
is empty. It is used for debug purposes.
var forceCounterDisplay = false;
---These are the values I am trying to query, is there
another way????
// These variables contain the actual counter values as
strings. An empty string means that the
// counter is not available.
var copySheets = "102991";
var printSheets = "76858";
var largeCopySheets = "571";
var largePrintSheets = "25";
var duplexCopySheets = "5825";
var duplexPrintSheets = "4683";
var markedImages = "190411";
var copyImages = "108816";
var printImages = "81541";
var faxImages = "0";
var networkScanningImages = "0";
var ifaxImages = "0";
var emailImages = "0";
//
==========================================================
=======================================
// This function outputs the table row containing the
billing counter information. The counter will
// not be displayed if the value is empty unless the
forceCounterDisplay variable is true.
//
// Parameters: titleString - name string used for
counter.
// valueString - value string used for
counter.
I am trying to query a web page on our company intranet.
This page contains info. on the billing meters of the
Xerox Documnet Centers we use. For some reason, only the
460st and 480st models don't pull back the data. I looked
at the source code and noticed that these pages use
javascript. I don't know if that has anything to do with
it or not.
This is a snippet of the code:
<script language="JavaScript">
<!-- Hide from old browser
// This variable forces display of the counter even if it
is empty. It is used for debug purposes.
var forceCounterDisplay = false;
---These are the values I am trying to query, is there
another way????
// These variables contain the actual counter values as
strings. An empty string means that the
// counter is not available.
var copySheets = "102991";
var printSheets = "76858";
var largeCopySheets = "571";
var largePrintSheets = "25";
var duplexCopySheets = "5825";
var duplexPrintSheets = "4683";
var markedImages = "190411";
var copyImages = "108816";
var printImages = "81541";
var faxImages = "0";
var networkScanningImages = "0";
var ifaxImages = "0";
var emailImages = "0";
//
==========================================================
=======================================
// This function outputs the table row containing the
billing counter information. The counter will
// not be displayed if the value is empty unless the
forceCounterDisplay variable is true.
//
// Parameters: titleString - name string used for
counter.
// valueString - value string used for
counter.