I recently upgraded my C# ASP.Net 4.0 application from Windows 2003 IIS 6 to Windows 2008 IIS 7 and some of my Javascript does not respond, which works with Windows 2003 & IIS6. At the simple example below, I get the following Javascript error:
"TypeError: Cannot read property 'txtAlias' of undefined [http://localhost:61003/Sabbat/Test.aspx:10]
The logic is simple. When you fill in the FirstName and LastName, the Alias field should display FirstName + LastName.
Fyi, I am using Integrated mode in IIS 7 and I tested on two machines with Win 2008 and IIS 7 and get the same error. It works fine on my Win 2003 & IIS 6 server. I have no idea what is causing this and I already spent 5 hours on this trying to find a solution. If anyone can help, that will save me some of my hair :)
Btw, the web.config I use is the default of the one generated when you create a web app. Thank you ahead!!!
<%@ Page Title="Home Page" Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
<script type="text/javascript">
function onFocusAlias() {
document.Form1.txtAlias.value = document.Form1.txtFirstName.value + " " + document.Form1.txtLastName.value;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr>
<td>
First Name <asp:TextBox ID="txtFirstName" Runat="server" MaxLength="50" /></td>
<td>
Last Name <asp:TextBox ID="txtLastName" Runat="server" MaxLength="50" /></td>
<td>
Alias <asp:TextBox ID="txtAlias" Runat="server" MaxLength="100" Width="208px" onfocus="onFocusAlias();" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>