i am displaying products in list view ! now in <itemTemplate> i'm showing the product name by doing :
<b> <%# Eval("ProductName") %></b>
now i would like to also show the price of this product. but the price is in another table since prices are different for different types of users ! so i have to get the product id and user type first in order to get the price type from the price table. so i did a label:
<label id="lblPrice" runat="server">
</label>
which i will be using it in the code to set its text to the price. can anyone pls let me know how i can access and edit this label from the code ?! thanks