Can anyone help me to format this in C#?
Here is the code as I had it in VB:
cmd.ExecuteNonQuery()
if cmd.Parameters("ReturnValue").value = 0 then
lblStatus.text = "This Tool has been successfully added."
else
lblStatus.text = "Error! Please try agian"
end if
sqlConn.Close();
Thank you.
Tim