ASP.NET web app not working on IE7

ASP.NET web app not working on IE7

am 09.01.2008 17:06:04 von Marisa

I am a novice web developer working in C#, and have created a web app
using Visual Studio 2005, which works perfectly in FireFox, but in
IE7, the submit button simply doesn't work! The OnClick event does
not run. I have tried setting the AutoEventWireUp both to true and
false, to no avail. I am using an Access database, and will post my
code upon request. If someone could help me, I'd very much appreciate
it.

Re: ASP.NET web app not working on IE7

am 09.01.2008 17:37:50 von adiel_g

To start out, can you post the aspx file. Thanks.

Adiel

Re: ASP.NET web app not working on IE7

am 09.01.2008 19:51:10 von Marisa

On Jan 9, 11:37 am, adie...@hotmail.com wrote:
> To start out, can you post the aspx file. Thanks.
>
> Adiel

I'm not going to post the entirety of it, but I'm posting the page
directive and the controls in question. Thank you so much any help.

Thanks,
Marisa


<%@ Page Language="C#" AutoEventWireup="false"
CodeFile="Species_Search.aspx.cs" Inherits="Species_Search"
EnableEventValidation="false" %>

Species Application




Select a Category:


DataSourceID="CategoryDataSource" CssClass="parkpark3"
DataTextField="Category"
DataValueField="CategoryID" SelectionMode="Multiple"
AppendDataBoundItems="True">
*Select Category asp:ListItem>


OldValuesParameterFormatString="original_{0}"
SelectMethod="GetCategory" TypeName="All_ResultsBLL"> asp:ObjectDataSource>



Select a Park:


DataSourceID="ParkDataSource" CssClass="parkpark3"
DataTextField="ParkName"
DataValueField="ParkCode" AppendDataBoundItems="True"
SelectionMode="Multiple">
*Select Park


runat="server"
OldValuesParameterFormatString="original_{0}"
SelectMethod="GetParkCode"
TypeName="All_ResultsBLL">


DataSourceID="ParkStatusDataSource"
DataTextField="ParkStatus" SelectionMode="Multiple"
DataValueField="tblParkStatus_LU_ParkStatusID"
AppendDataBoundItems="True">
*Select Status(es) asp:ListItem>


runat="server"
OldValuesParameterFormatString="original_{0}"
SelectMethod="GetParkStatus" TypeName="All_ResultsBLL">



DataSourceID="CombinedSpeciesDataSource"
DataTextField="Species_Descriptor"
SelectionMode="Multiple" DataValueField="SpeciesCode"
AppendDataBoundItems="True">
*Select Species



runat="server"
OldValuesParameterFormatString="original_{0}"
SelectMethod="GetSpecies" TypeName="All_ResultsBLL">



OnClick="ButtonSubmit_Click" Text="Search" />
OnClick="ButtonReset_Click" Text="Reset Search" />


AutoGenerateColumns="False"
DataSourceID="gvMajorDataSource"

OnPageIndexChanged="GridViewMajor_PageIndexChanged">

HeaderText="Category" SortExpression="Category" />
HeaderText="CategoryID" SortExpression="CategoryID" />
HeaderText="ParkName" SortExpression="ParkName" />
HeaderText="ParkCode" SortExpression="ParkCode" />
HeaderText="ParkStatus" SortExpression="ParkStatus" />
DataField="tblParkStatus_LU_ParkStatusID"
HeaderText="tblParkStatus_LU_ParkStatusID"
SortExpression="tblParkStatus_LU_ParkStatusID" /
>
HeaderText="SpeciesCode" SortExpression="SpeciesCode" />
HeaderText="Family" SortExpression="Family" />
HeaderText="ResidencyDetails" SortExpression="ResidencyDetails" />
HeaderText="AbundanceDetails" SortExpression="AbundanceDetails" />
HeaderText="NativityID" SortExpression="NativityID" />
HeaderText="Comments" SortExpression="Comments" />
HeaderText="AbundanceID" SortExpression="AbundanceID" />
HeaderText="ResidencyID" SortExpression="ResidencyID" />
HeaderText="FullLatinName" SortExpression="FullLatinName" />
HeaderText="CommonName" SortExpression="CommonName" />
HeaderText="StatusDetails" SortExpression="StatusDetails" />



DataFile="~/App_Data/Species_Lists.mdb" SelectCommand="SELECT
[Category], [CategoryID], [ParkName], [ParkCode], [ParkStatus],
[tblParkStatus_LU_ParkStatusID], [SpeciesCode], [Family],
[ResidencyDetails], [AbundanceDetails], [NativityID], [Comments],
[AbundanceID], [ResidencyID], [FullLatinName], [CommonName],
[StatusDetails] FROM [tblAll_Results2]" >