在我的项目中,我想向 html 端显示一个变量,但我收到了这条消息。
我的代码在后面
ShipperResposite _shiperResposite = new ShipperResposite();
public decimal Price
{
get { return Price; }
set
{
Price=_shiperResposite.GetPriceFromID(Convert.ToInt32(Request.QueryString["ID"]));
Price = value;
}
}
我的 html 方面
<div class="prod_price_big"><span class="reduce">350$</span><%=Price %><span class="price"> </span></div>
我希望价格显示在 html 端。