首先我是编程新手 我试图在我的代码中添加消息,但我没有成功 我需要的是添加消息,当用户说是,当没有其他操作可以执行时,某些操作将会执行。 我在C#中尝试过并使用messagebox成功但我不知道用asp做到了。 我的c#代码是
else if (MessageBox.Show("Do any vessel's permeate TDS more high than others", "High Vessel TDS?", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
this.frmROPro.lbProblems.Items.Add("You have problem No 10");
}
else if (MessageBox.Show("Do feed water has some Metallic particles", "Metallic particles in the feed water?", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
this.frmROPro.lbProblems.Items.Add("You have problem No 11");
}
this.frmROPro.lbProblems.Items.Add("You have problem No 9");
这就是我需要asp
中的代码的地方 if (currentitem("Permeate_Pressure") > currentitem("Reject_Pressure"))
{
addingproblem("No_12");
}
else if (**********i need the code here***************)