Link to home
Start Free TrialLog in
Avatar of dwezil
dwezilFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Mbox, messagebox.show, window alert? Need a hand with a message box pop up, depending on the results of an If statement

Hello, basically what i need is a message box pop up that will either say 'this project exists, please select another' if the IF is true else 'project doesnt exist please carry on process'. I tried a few ways already but from looking on here I see Java script is favoured....unluckly my java knowledge is limited.

Any help is much appreciated thanks!
protected void btnProjSearch_Click(object sender, EventArgs e)
    {
 
        string OracleConnectionStringBuilder = "Data Source=TEST;User Id=***;Password=****";
 
        OracleConnection myConnection = new OracleConnection(OracleConnectionStringBuilder);
        myConnection.Open();
 
 
        string commandString2 = "SELECT PROJECTNO FROM P_AMASTER WHERE PROJECTNO like '" + txtProjNo.Text + "'";
 
    OracleCommand myCommand2 = new OracleCommand(commandString2, myConnection);
 
    OracleDataReader myReader2 = myCommand2.ExecuteReader();
    myReader2.Read();
 
        if (myReader2.HasRows)
        {
          
        }
        else
        {
 
        }
 
        
        myReader2.Close();   
        }
    }

Open in new window

Avatar of sciuriware
sciuriware

JOptionPane


;JOOP!
ASKER CERTIFIED SOLUTION
Avatar of sciuriware
sciuriware

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial