ImageButton OnClick Event not firing

Posted by webnoob on Stack Overflow See other posts from Stack Overflow or by webnoob
Published on 2010-04-07T13:53:37Z Indexed on 2010/04/07 14:13 UTC
Read the original article Hit count: 295

Filed under:
|
|

Hi All,

I am really confused about this one. I have some code that runs fine on my development server but I am now trying to get the site working on the sales guys new laptop. None of the image buttons on the website seem to be working for him (they just redirect me back to the websites homepage) whereas they used to on his previous machine.

The only difference between each machine is that his old one was Vista and the new one is Windows 7.

Has anyone come accross this issue?

Some code:

The form:

<div class="form_text"></div>
    <div class="form_box_link">
    <asp:ImageButton id="LoginSubmitButton" onClick="FLoginWebService" ImageURL="~/Images/login.png" runat="server" />
</div>

The code behind (delphi):

procedure TMemberLogin.FLoginWebService(Sender: TObject; e: System.EventArgs);
begin
    //Code Removed but using OutputDebugString shows nothing is being done in here
end;

As mentioned, this works everywhere else except on his windows 7 machine.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about c#