I click the button and it does not add me to the div, but sends it to the database, can anyone help me?
C #
protected void img_btn_enviar_nome_Click(object sender, EventArgs e)
{
UtilizadoresBot msg_nome = new UtilizadoresBot
{
Nome = txt_msg_nome.Text,
};
db.UtilizadoresBot.InsertOnSubmit(msg_nome);
db.SubmitChanges();
div_conversa.Controls.Add(new LiteralControl("<p class='p_cliente'> 1 " + msg_nome + "</p>"));
div_conversa.Controls.Add(new LiteralControl("<div style='clear: both'></div>"));
}
HTML
<div id="div_conversa" class="div_conversa" runat="server"></div>