how do i bind data to a label?

  • Thread starter Thread starter Troye Stonich
  • Start date Start date
T

Troye Stonich

basically, i am a classic asp developer wishing to display a single record
from a database based on a querystring parameter:

sql = select projectName from tblProj where projectID = ' " &
Request.Querystring("projectID") & " ' "

what used to be: <p>View Details for: <%= rs("projectName") %></p>

now i have <asp:label /> .....

how do i accomplish this using asp:label?
 
Back
Top