I am working on showing the regular price for the on sale product on the page that generates by showfiltercategory.aspx.
<tr>
<td height="10" align="center" valign="top">
<asp:Label runat="server" ID="lblprice" CssClass='<%#Eval("pricetext")%>' Text='<%# Eval("Price") %>'></asp:Label>
</td>
</tr>
The above code is in the showfiltercategory.aspx. Eaval("Price") returns original price if the product is not on sale, or it returns the sale price if the product is on sale.
I want to display both regular price and sale price of a product. How do I get the regular price when a product is on sale?
Thanks,
Pheap