apros
apros

Reputation: 2878

LinkButton doesn't raise postback on IIS7 and IE7

Why with LinkButton doesn't work postback with IE7 and work with FW3.+ when site work on IIS7?

Upvotes: 0

Views: 1789

Answers (3)

Coding Flow
Coding Flow

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

Tim Schmelter
Tim Schmelter

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

Tim Ebenezer
Tim Ebenezer

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

Related Questions