Posted on: 2/14/2014 10:58:53 AM | Views : 619

I create a grid of text boxes and buttons that correspond to each row dynamically.
Everything works as fine and as expected locally under Visual Studio 2010. However, on a server running IIS when the button is clicked nothing happens.
Any ideas?
Here is my code:
ASPX
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> <br /> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Panel ID="TablePanel" runat="server"> </asp:Panel> </ContentTemplate> </asp:UpdatePanel> <br /> </asp:Content> vb.net
Imports System.Data Partia ...

Go to the complete details ...