IPP Sort Order

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.
 
Joined
Oct 20, 2005
Messages
1
Reaction score
0
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
 
Joined
May 18, 2010
Messages
1
Reaction score
0
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!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top