Hi,
I am facing a peculiar issue with my application built in ASP.Net 2.0.
It is running properly in IE but when i use Firefox, the buttons are not
working in the application.
when i debug, i see that the page post backs but does not enter the event
handler.
the code for the button is as follows:
<asp:ImageButton ID="ImgBtnReportBuilder" ImageUrl="<%$
Resources:CemexResource, Main_ImageButton_ImageUrl_ImgBtnReportBuilder%>"
runat="server" AlternateText="Report Builder"
OnClick="ImgBtnReportBuilder_Click" />
the page directive is :
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Main.aspx.cs"
Inherits="Main" MasterPageFile="~/DQTMasterPage.master" Theme="Theme"%>
the code in the event handler is :
protected void ImgBtnReportBuilder_Click(object sender,
ImageClickEventArgs e)
{
Response.Redirect("WizSetup1.aspx");
}
Any help regarding this would be highly appreciated.
Thanks,
Animesh
[Non-text portions of this message have been removed]