I have a datalist that is in tabular format. It displays a list of employee names that is populated by "Select * from Employee Order by Company". I also want to categorize the employees by Company by showing a row with the company name everytime the company name changes in the data. In asp 3.0 all I had to do was:
dim currentCompany
currentCompany = ""
If currentCompany <> RS("Company" then
Response.write("<TR><TD>" & RS("Company" & "</TD></TR>"
currentCompany = RS("Company"
End If
How do I do this in asp+?
Thanks,
drew10
dim currentCompany
currentCompany = ""
If currentCompany <> RS("Company" then
Response.write("<TR><TD>" & RS("Company" & "</TD></TR>"
currentCompany = RS("Company"
End If
How do I do this in asp+?
Thanks,
drew10