PDA

View Full Version : ipp_0001.asp page to group by Location



bubberz
04-21-2010, 11:00 AM
I'm trying to get this printers page to have a grouping band by location:
server/printers/ipp_0001.asp

...page found in the Windows/Web directory for Server 2008.

So, when the page is run, there's a grouping band by location...and you can see by location where printers are associated.

It's just a more user friendly representation of where printers are.

Thanks!

bubberz
05-18-2010, 01:33 PM
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!