IPP Sort Order

  • Thread starter Thread starter stuff
  • Start date Start date
S

stuff

Does anyone know how to change the sort order of the printers displayed in
IPP with Windows 2000 server? In my multi-floor building, I'd like to set
the location in the printer properties, then have the ASP page sort by the
Location field.

I'm sure it's in one of the files like ipp_0001.asp or something, but I
can't find the right section of the code.

Thank you.
 
stuff said:
Does anyone know how to change the sort order of the printers displayed in
IPP with Windows 2000 server? In my multi-floor building, I'd like to set
the location in the printer properties, then have the ASP page sort by the
Location field.

I'm sure it's in one of the files like ipp_0001.asp or something, but I
can't find the right section of the code.

Thank you.

Hi, did you get anywhere with this? I have also been looking into this and found this post from a couple of years ago.

I would greatly appreciate any advice.

Thanks
 
All,

I found this to get the column headers sortable:
http://www.kryogenix.org/code/browser/sorttable/

I had to edit the ipp_0001.asp page as follows to get the table headers:



Function GenTableHead ()
...lines omitted for brevety

strHTML = "<thead><tr>"

For i = 0 to 5
strHTML = strHTML & "<th>" & MENU_FONT_TAG &_
strTableTitle(i) & END_FONT & "</th>"
Next
strHTML = strHTML & "</tr></thead>"

GenTableHead = strHTML
End Function


Thanks!
 
Back
Top