I need to create some buttons dynamically in C # and pass them some event, which when I click them pass two values to a select variable to bring quantity x of lines of it
class with select
public DataSet MaxId()
{
cldBancoDados cldBancoDados = new cldBancoDados();
StringBuilder strQuery = new StringBuilder();
strQuery.Append("SELECT ");
strQuery.Append("MAX (ID_OFERTA) ");
strQuery.Append("FROM TB_OFERTA");
return cldBancoDados.RetonarDataSet(strQuery.ToString());
}
public DataSet TrazerProdutosDesconto(int a, int b)
{
cldBancoDados cldBancoDados = new cldBancoDados();
StringBuilder strQuery = new StringBuilder();
strQuery.Append("SELECT ");
strQuery.Append("CONCAT(P.NOME_PRODUTO, ");
strQuery.Append("CONCAT(CONCAT(' ',P.MARCA_PRODUTO),");
strQuery.Append("CONCAT(CONCAT(' ',P.DESCRICAO_PRODUTO),");
strQuery.Append("CONCAT(' ',P.PESO_PRODUTO)))),");
strQuery.Append("PE.PRECO_PRODUTO, ");
strQuery.Append("O.DESCONTO, ");
strQuery.Append("O.DURACAO_OFERTA, ");
strQuery.Append("P.IMG, ");
strQuery.Append("LJ.IMG ");
strQuery.Append("FROM TB_OFERTA O ");
strQuery.Append("INNER JOIN TB_PRODUTO_ESTOQUE PE ");
strQuery.Append("ON PE.ID_PRODUTO_ESTOQUE = O.ID_PRODUTO_ESTOQUE ");
strQuery.Append("INNER JOIN TB_PRODUTO P ");
strQuery.Append("ON P.ID_PRODUTO = PE.ID_PRODUTO ");
strQuery.Append("INNER JOIN TB_LOJA LJ ");
strQuery.Append("ON LJ.ID_LOJA = PE.ID_LOJA ");
strQuery.Append("WHERE ROWNUM BETWEEN " + a + " AND " + b);
return cldBancoDados.RetonarDataSet(strQuery.ToString());
}
In case I need to pass those values through javascript to the variables 'a' and 'b'.