示例#1
0
 protected void BtnInserir_Click(object sender, EventArgs e)
 {
     if (DropProduto.SelectedValue.ToString() != "" && DropProduto.SelectedValue.ToString() != "Produtos" && TextDataInicio.Text != "" && TextDataFim.Text != "" && TextPreco.Text != "" && DropFornecedor.SelectedValue.ToString() != "Lojas")
     {
         LabelStatus.Text = "";
         _gravar          = new GravarAnuncio();
         var Gravar = _gravar.InserirAnuncio(DropProduto.SelectedValue.ToString(), TextDataInicio.Text, TextDataFim.Text, TextPreco.Text, DropFornecedor.SelectedValue.ToString(), DropTipo.SelectedValue.ToString(), TextLink.Text);
         LabelStatus.Text = Gravar.ValMenssage.ToString();
         if (LabelStatus.Text == "Registro inserido com sucesso")
         {
             LabelStatus.CssClass = "TxtVerde";
             TextDataInicio.Text  = "";
             TextDataFim.Text     = "";
             TextPreco.Text       = "";
             TextLink.Text        = "";
         }
         else
         {
             LabelStatus.CssClass = "TxtVermelho";
         }
         Reload();
     }
     else
     {
         LabelStatus.Text     = "É necessário preencher todos os campos";
         LabelStatus.CssClass = "TxtVermelho";
     }
 }
示例#2
0
 public void BtnInserir_Click(object sender, EventArgs e)
 {
     if (DropTipo.SelectedValue != "" && DropProduto.SelectedValue.ToString() != "" && DropProduto.SelectedValue.ToString() != "Produtos" && TextDataInicio.Text != "" && TextDataFim.Text != "" && TextPreco.Text != "")
     {
         LabelStatus.Text = "";
         _gravar          = new GravarAnuncio();
         var Gravar = _gravar.InserirAnuncio(DropProduto.SelectedValue.ToString(), TextDataInicio.Text, TextDataFim.Text, TextPreco.Text, DropTipo.SelectedValue.ToString(), Request.ServerVariables["AUTH_USER"].ToString(), "");
         LabelStatus.Text = Gravar.ValMenssage.ToString();
         if (LabelStatus.Text == "Registro inserido com sucesso")
         {
             LabelStatus.CssClass = "TxtVerde";
             TextDataInicio.Text  = "";
             TextDataFim.Text     = "";
             TextPreco.Text       = "";
         }
         else
         {
             LabelStatus.CssClass = "TxtVermelho";
         }
         Reload();
     }
     else
     {
         LabelStatus.Text     = "É necessário preencher todos os campos";
         LabelStatus.CssClass = "TxtVermelho";
     }
 }