Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8844075
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T11:23:44+00:00 2026-06-14T11:23:44+00:00

I have an ASP.NET Web Application that has a dropdownlist which pulls up student

  • 0

I have an ASP.NET Web Application that has a dropdownlist which pulls up student records. This works on all browsers, Android OS and IOS except for the new IE on the windows tablet. Does anyone know why it’s not loading or pulling the information?

Here’s some code:

<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
        DataSourceID="SqlDataSource3"  DataTextField="zName" DataValueField="Id" 
        AppendDataBoundItems="True" 
        onselectedindexchanged="DropDownList1_SelectedIndexChanged">
        <asp:ListItem Value="0">Select</asp:ListItem>
    </asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource3" runat="server" 
        ConnectionString="<%$ ConnectionStrings:TestDBConnectionString1 %>" 
        SelectCommand="SELECT Id, (lName + ', ' + fName) AS zName FROM bleaTest"></asp:SqlDataSource>


<asp:FormView ID="FormView1" runat="server" 
        DataSourceID="SqlDataSource1">
<ItemTemplate>
            <span class="style1">Id:
            <asp:Label ID="IdLabel" runat="server" CssClass="bold" 
                Text='<%# Bind("Id") %>' />
            <br />
            First Name:
            <asp:Label ID="fNameLabel" runat="server" CssClass="bold" 
                Text='<%# Bind("fName") %>' />
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Last Name:
            <asp:Label ID="lNameLabel" runat="server" CssClass="bold" 
                Text='<%# Bind("lName") %>' />
            &nbsp;<br /> Gender:
            <asp:Label ID="genLabel" runat="server" CssClass="bold" 
                Text='<%# Bind("gen") %>' />
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Agency:
            <asp:Label ID="agencyLabel" runat="server" CssClass="bold" 
                Text='<%# Bind("agency") %>' />
            <br />
            Title:
            <asp:Label ID="titleLabel" runat="server" CssClass="bold" 
                Text='<%# Bind("title") %>' />
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
            </span>
            <br />
        </ItemTemplate>
</asp:FormView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" 
        ConnectionString="<%$ ConnectionStrings:TestDBConnectionString1 %>" 
        DeleteCommand="DELETE FROM [bleaTest] WHERE [Id] = @Id" 
        SelectCommand="SELECT Id, fName, lName, agency, title, gen, hired, AppS, course, Location, SessNum, SDate, EDate, Hours, SitUps, pushUps, rTime, Grade FROM bleaTest WHERE (Id = @Id)"


        UpdateCommand="UPDATE [bleaTest] SET [fName] = @fName, [lName] = @lName, [agency] = @agency, [title] = @title, [gen] = @gen, [hired] = @hired, [AppS] = @Apps, [course] = @course, [Location] = @Location, [SDate] = @SDate, [EDate] = @EDate, [Hours] = @Hours WHERE [Id] = @Id">
        <DeleteParameters>
            <asp:Parameter Name="Id" Type="Int32" />
        </DeleteParameters>
        <SelectParameters> 
            <asp:ControlParameter ControlID="DropDownList1" Name="Id"  
                PropertyName="SelectedValue" Type="String" /> 

        </SelectParameters>
        <UpdateParameters>
            <asp:Parameter Name="fName" Type="String" />
            <asp:Parameter Name="lName" Type="String" />
            <asp:Parameter Name="Agency" Type="String" />
            <asp:Parameter Name="title" />
            <asp:Parameter Name="gen" />
            <asp:Parameter Name="hired" />
            <asp:Parameter Name="Apps" />
            <asp:Parameter Name="course" />
            <asp:Parameter Name="Location" />
            <asp:Parameter Name="SDate" />
            <asp:Parameter Name="EDate" />
            <asp:Parameter Name="Hours" />
            <asp:Parameter Name="Id" Type="Int32" />
        </UpdateParameters>
    </asp:SqlDataSource>

Thank you in advance!!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T11:23:45+00:00Added an answer on June 14, 2026 at 11:23 am

    Did some more research and figured it out (Finally). For some reason or maybe a security reason, IE10 has an issue with doing a postback I found a great link that might help some people out.

    http://www.hanselman.com/blog/BugAndFixASPNETFailsToDetectIE10CausingDoPostBackIsUndefinedJavaScriptErrorOrMaintainFF5ScrollbarPosition.aspx

    Hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a code base that has been used as an ASP.Net web application.
I have a web application on ASP.NET (C#) that has some precompiled components. I've
So I have this asp.net web application that I renamed. I changed the assembly
I have an ASP.NET Web Application that has several references set. I have Copy
If I have an ASP.NET web application that has a SQL Server database, is
I have an ASP.NET web application hosted on a CMS(sharepoint 2013) that has built
I have an asp.net web application that use FormsAuthentication. Now, the application has a
I have an ASP.NET web application I'm running with VS2010 that has session timeout
We have an ASP.Net Web Application that is running in an IIS Web-Garden--which is
In my ASP.NET web-based application, I have a normal ASP.NET button that has a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.