Reputation: 2878
Why with LinkButton doesn't work postback with IE7 and work with FW3.+ when site work on IIS7?
Upvotes: 0
Views: 1789
Reputation: 21881
Is there some kind of JavaScript error on the page that is preventing Javascript from running in IE7 and hence no postback?
Upvotes: 0
Reputation: 460028
Are you testing on your your productive server(f.e. Windows Server 2008) with high security settings in IE? Use a client with normal security settings and javascript enabled as mentioned before.
Upvotes: 1
Reputation: 2724
Have you got javascript enabled? Link buttons use the __doPostback Javascript method. For a non-javascript reliant postback, use regular asp:Button controls.
Upvotes: 0