-
ipp_0001.asp page to group by Location
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!
-
Sort Table resolution found
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!
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks