onkeypress not supported in asp.net 2.0 ??
Hi,
I was using this code in asp.net 2003 and it was working fine..
<asp:textbox onkeypress="OnlyNumber('txtConfirmACnumber')" id="txtConfirmACnumber" oncopy="return false" runat="server" ></asp:textbox>
function OnlyNumber(str)
{
if ( ((window.event.keyCode <48) | (window.event.keyCode >57)))
{
window.event.returnValue=false;
}
}
But this code does not work properly in asp.net 2.0
Can anyone tell me is onkeypress not supported in asp.net 2.0????
THANKS
Savan
__________________
Savan
|