Posted on: 3/25/2015 3:02:09 PM | Views : 630

I have an application that runs fine on my localhost, but when I publish it to the server one particular button click never gets triggered.  One page launches another through a hyperlink, but it's styled with a jquery thickbox.  That page contains two update panels, both of which work normally, but when the Submit button is clicked (which lies outside either updatepanel) the thickbox closes (as designed) without triggering the buttons server side click event.  The thickbox page looks like this:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="add_inspection_report.aspx.cs" Inherits="MCS.secure.add_inspection_report" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Add Inspection Report</title> <meta content="text/html; charset=iso-8859-1" http-equi ...

Go to the complete details ...