Hello there,
I need using the Parameter Direction Output from stored procedure of MySQL database in the GridView1_RowDataBound event.
If the value of Parameter Direction Output from stored procedure is not null in the corresponding column of the gridview they must write one otherwise zero
Any suggestion?
I don't know what to do.
cmd.Parameters.Add(new MySqlParameter("@spRetval", MySqlDbType.VarChar));
cmd.Parameters["@spRetval"].Direction = ParameterDirection.Output;