Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ipp_0001.asp page to group by Location

Status
Not open for further replies.

codecomm

Programmer
Joined
Feb 14, 2007
Messages
121
Location
US
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!
 
All,

I found this to get the column headers sortable:

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!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top