D
DS
I am trying to migrate a vs 2003 asp.net application to vs 2005 and am
having many problems. After dealing with 300+ compile errors after
conversion now I have many run time error. I lot of them seem to be
related to client script problems. Does vs 2005 handle client script
differently than 2003?
One of my problems is that some of my control events are not being
called. For example I have a textbox control:
<asp:textbox id=txtDate tabIndex="3" runat="server" Height="19px"
CssClass="textboxreadonly" Width="130px" MaxLength="10"
ReadOnly="True">
In client script I have this sub that is no longer being called after
the conversion:
sub txtDate_OnChange
document.frmTaskDetails.hDueDateChanged.Value =
document.frmTaskDetails.txtDate.value
EnableCmdSave()
end sub
I then tried to add this to my asp:textbox tag:
onChange="txtDate_OnChange"
And it's still will not working.
Any help would be greatly appreciated.
Thanks in advance for all help!!!!
Deidre
having many problems. After dealing with 300+ compile errors after
conversion now I have many run time error. I lot of them seem to be
related to client script problems. Does vs 2005 handle client script
differently than 2003?
One of my problems is that some of my control events are not being
called. For example I have a textbox control:
<asp:textbox id=txtDate tabIndex="3" runat="server" Height="19px"
CssClass="textboxreadonly" Width="130px" MaxLength="10"
ReadOnly="True">
In client script I have this sub that is no longer being called after
the conversion:
sub txtDate_OnChange
document.frmTaskDetails.hDueDateChanged.Value =
document.frmTaskDetails.txtDate.value
EnableCmdSave()
end sub
I then tried to add this to my asp:textbox tag:
onChange="txtDate_OnChange"
And it's still will not working.
Any help would be greatly appreciated.
Thanks in advance for all help!!!!
Deidre