Actualmente estoy desarrollando un chat en asp.net, y tengo un problema con el scroll, no se baja automaticamente.si me pueden ayudar en resolver el problema.
Aqui les dejo parte del codigo del chat
Código:
<div id="contenidochat"> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <div id="ChatContent" runat="server" style="height: 300px; vertical-align: top; overflow:scroll; text-align: left; margin-left: 10px; width: 97%; background-color: White;"> </div> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" /> </Triggers> </asp:UpdatePanel> <asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer1_Tick"> </asp:Timer> <asp:Timer ID="Timer2" runat="server" Interval="5000" OnTick="Timer2_Tick"> </asp:Timer> <asp:Timer ID="Timer3" runat="server" Interval="300000" OnTick="Timer3_Tick"> </asp:Timer> </div>