Question IE 11 Causing Page to Reload Instead of Passing User Name

mware

New member
Joined
Dec 4, 2013
Messages
2
Programming Experience
1-3
I have a page that passes a User Name to another page for posting and works in all versions of IE except for IE 11. When the customer enters the user name in IE 11 and then clicks login it causes the page to reload and does not pass the information. If the customer changes compatibility mode to an earlier version it works fine. Anyone else encounter this issue and no how to resolve? This is the code for the page if you see what I need to change I appreciate it.

<%@ Page Title="Loan to Learn | My Account Login" Language="vb" AutoEventWireup="false"
MasterPageFile="~/Public.Master" CodeBehind="newmyaccount.aspx.vb" Inherits="Website.newmyaccount"
ViewStateMode="Disabled" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<link type="text/css" href="css/south-street/jquery-ui-1.8.13.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.13.custom.min.js"></script>
<script type="text/javascript" src="js/jquery.validate.js"></script>


<script type="text/javascript">

$(function () {
$('form').validate();


});


$(document).ready(function () {

$('form').validate({
rules: {
DE_LS_ATTM_USER_NM: "required"
},
messages: {
DE_LS_ATTM_USER_NM: "Username is required"
}
}
);

var $dlg = $('#pnlNewMA')
.dialog({
title: 'Paperless E-Statements Now Available',
autoOpen: true,
width: 500,
modal: true,
buttons: {
Ok: function () {
$(this).dialog("close");
}
}
});

$dlg.parent().appendTo(jQuery('form:first'));


});



</script>
<style type="text/css">
.style1
{
color: #CC3300;
text-decoration: underline;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="cpBody" runat="server">
<div id="pnlNewMA" style="text-align: left">
Loan to Learn now offers Paperless E-Statements which are the easiest, safest and fastest way to receive
your monthly billing statements from Loan to Learn. By signing up for Paperless E-Statements through
our My Account service you can help protect the planet, lower your risk of identity theft and reduce clutter.
Sign up today and make your account Green!
</div>
<table style="border-spacing: 0">
<tr>
<td style="width: 650px; vertical-align: top;">
<asp:Image ID="Image1" SkinID="imgNewMANoDate" AlternateText="New My Account Introduction" runat="server" />
<div style="position: absolute; top: 15px; left: 495px;">
<a href="newmyaccount/Tour/Default.aspx">
<asp:Image runat="server" ID="pushpin" AlternateText="Take a Tour of My Account" SkinID="imgTour" />
</a>
</div>
<div class="BostonBox">
<h1>
Introducing the <i>New</i> My Account</h1>
The new and improved My Account is here! Enroll today and start enjoying the new
features and enhancements.
<br />
<br />
<h2>
What's New</h2>
<ul>
<li>Ability to save bank account information for one-time payments</li>
<li>Ability to set future payment date and cancel pending one-time payments</li>
<li>Ability to receive e-mail notifications for payment due and statement availability</li>
<li>Improved performance and additional information</li>
<li><strong>Now Available:</strong> Ability to go green with <a href="PaperlessStatement.aspx" target="_blank">Paperless E-Statements</a></li>
</ul>
<h2>
Existing My Account Customers</h2>
If you were enrolled in My Account before July 29, 2011, you must re-enroll in the
new My Account in order to continue to have online access to your account. 
<a href="newmyaccount/FAQ.aspx">Learn more</a>.
</div>
</td>
<td style="vertical-align: top">
<div style="margin-bottom: 2px; margin-left: 8px; margin-right: 4px; background-color: #6BA540; padding: 8px;">
<a href="PaperlessStatement.aspx">
<img src="Images/PaperlessStatements.jpg" alt="Loan to Learn Promise"/></a>
</div>

<div class="BostonBox">
<h1>
My Account Sign In</h1>
<input name="DE_LANG_CD" type="hidden" value="EN" />
<input name="DE_USER_VALUE" type="hidden" value="585520" />
<input name="DE_WEB_COMMAND" type="hidden" value="SignOnUser" />
<input name="DE_WEB_PAGE_ID" type="hidden" value="userid" />
<table style="width: 100%">
<tr>
<td>
<label for="UserName">Username:</label>
</td>
<td style="text-align:right">
<input id="UserName" name="DE_LS_ATTM_USER_NM" type="text" style="width: 160px; padding:5px;" class="text ui-widget-content ui-corner-all textpadding" />
</td>
</tr>
<tr>
<td>
</td>
<td style="text-align: right">
<br />
<asp:ImageButton ID="ImageButton2" AlternateText="Login My Account" runat="server" SkinID="ibLogin" PostBackUrl="<%$appSettings:LoginPostURL%>" />
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td colspan="2">
<hr />
<span class="style1">IMPORTANT:</span> If you were enrolled in My Account prior
to July 29, 2011, you must re-enroll to use the new My Account (<a href="newmyaccount/FAQ.aspx#whyreregister">why?</a>).
</td>
</tr>
</table>
</div>
<div class="BostonBox">
<h1>
My Account Enrollment</h1>
If you are new to My Account OR if you were enrolled prior to July 29, 2011, you
must complete the new My Account enrollment.
<br />
<br />
<div style="text-align: center">
<asp:HyperLink runat="Server" ID="hlEnroll" NavigateUrl="<%$appSettings:EnrollmentURL%>">
<asp:Image ID="imgEnroll" AlternateText="Enroll My Account" runat="server" SkinID="imgEnroll" /></asp:HyperLink>
</div>
</div>
<div class="BostonBox" style="height: 101px;">
<h1>
Learn More</h1>
For more information about the new My Account, visit the new My Account <a href="newmyaccount/FAQ.aspx">
Frequently Asked Questions</a> page.
</div>
</td>
</tr>
</table>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="cpFooter" runat="server">
</asp:Content>
 
Back
Top