ASP.net应用程序事件发布后未触发

时间:2017-07-21 17:12:33

标签: asp.net vb.net

我编写并测试了我的asp.net应用程序,它在调试模式下工作正常。但是,当我将它发布到IIS时,似乎我的事件有时会触发。事件是文本框文本更改事件和计时器标记事件。

计时器aspx:

<asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick" Enabled="True" Interval="500"
           ViewStateMode="Enabled">
</asp:Timer>

Textbox aspx:

<asp:TextBox ID="TextBox1" CausesValidation="true" AutoPostBack="true" runat="server"
             Height="101px" Width="350px"
             OnTextChanged="TextBox1_TextChanged" Font-Size="Large"></asp:TextBox>

0 个答案:

没有答案