Hi everyone,

My code works great in FireFox but not IE8. I am using VS2008 asp.net and using textbox controls. Can anyone tell me what to change to make this work? Below is part of the code used:

DT1 through DT6 are textbox controls for the code below.


Code:
	<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/themes/base/jquery-ui.css" type="text/css" media="all" />

    <link rel="stylesheet" href="http://static.jquery.com/ui/css/demo-docs-theme/ui.theme.css" type="text/css" media="all" />

	<script src="../../JQuery/jquery-1.7.2.js"></script>
	<script src="../../../JQuery/jquery.ui.core.js"></script>
	<script src="../../ui/jquery.ui.widget.js"></script>
	<script src="../../../JQuery/jquery.ui.datepicker.js"></script>
	<script>
	    $(function() {
	    $("#<%= DT5.ClientID %>").datepicker();
	    });
	    $(function() {
	        $("#<%= DT6.ClientID %>").datepicker();
	    });
	    $(function() {
	        $("#<%= DT1.ClientID %>").datepicker();
	    });
	    $(function() {
	        $("#<%= DT2.ClientID %>").datepicker();
	    });
	    $(function() {
	        $("#<%= DT3.ClientID %>").datepicker();
	    });
	    $(function() {
	        $("#<%= DT4.ClientID %>").datepicker();
	    });
	</script>
All of the texbox controls are just like this:

Code:
<asp:TextBox ID="DT6" name="DT6" runat="server" Height="13" Width="80"></asp:TextBox>
Any help would be greatly appreciated!!

Warren