first i am new in programming i tried to add message inside my code but i did not succeed any way what i need is to add message and when user say yes some action will do when no other actions will do. i tried it in C# and succeed with messagebox but i have no idea to do it with asp. my c# code was
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");
and that is where i need the code in asp
if (currentitem("Permeate_Pressure") > currentitem("Reject_Pressure"))
{
addingproblem("No_12");
}
else if (**********i need the code here***************)