LinkButtons not working in ASP.net/C# app deployment

Hi everyone I am running into a situation where link buttons are not responding to a gridview control in one of my applications deployed to a production machine. Not sure what's going on.

The problem is very similar to this one , although I examined the html output on the page and it looks reasonable. Any thoughts / suggestions would be greatly appreciated.

0


source to share


3 answers


Turns out it was a SQL Server authentication issue. This was not immediately obvious because I was running my application in Firefox and it was not showing any errors; just unresponsive UI elements. Running things in IE revealed the problem. I adjusted the permissions for the database I was trying to connect to and now everything works correctly. Thanks for your suggestions to everyone.



0


source


If these LinkButtons are dynamically created as part of the DataBinding for the gridview, they must also be re-created during postback.



Page_load fires before the clickbutton click event occurs, and if, after page_load is complete, the same link button has not been recreated, the event is not connected since the link button does not exist at the time and the click event won fire.

+1


source


Any chance of javascript disabled in the browser? I also had problems with this with some AV security applications that were extinguishing with javascript in the browser.

+1


source







All Articles