我正在使用C#在我的比萨店项目网站上工作。我需要制作页面,您可以在其中创建自己的披萨。问题是我的客户可以选择将配料放 3 倍。我需要为每个1x、2x 和 3x制作一个下拉列表,我有不同的价格 1x = 10、2x = 15、3x = 20。我的问题是如何使每个 1x、2x 和 3x 等于不同的价格,因为最后,我想在显示价格的地方制作标签。
如果您有更好的建议,请发表评论(我还在学习 C#)提前感谢您的回复。
到现在为止的代码是:
}
static void Main()
{
int first, second, third;
first = 10;
second = 15;
third = 20;
}
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
if (CheckBox1.Checked == true)
{
DropDownList1.Visible = true;
Image1.Visible = true;
}
else
{
DropDownList1.Visible = false;
Image1.Visible = false;
}
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
// Each element = to different price
DropDownList1.DataValueField = "first";
//ListItem lst = new ListItem("Add New", "0");
}
}