我使用带有c#多行文本框的Ajax更新面板,它在计时器上更新,但它一直滚动到顶部,我尝试将maintainginscrollpositiononpostback设置为true,并尝试了各种javascripts。 broswer im using是IE。
这是我在表单上带有c#文本框的asp代码。
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:TextBox ID="TextBox1" runat="server" AutoPostBack="True" Height="390px" TextMode="MultiLine" Width="836px"></asp:TextBox>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
</Triggers>
</asp:UpdatePanel>
我对updatepanel很新,所以也许有些问题,谢谢\