Click here to Skip to main content
15,910,787 members

Comments by Paramaa (Top 11 by date)

Paramaa 21-Mar-14 4:49am View    
i have tried both the solutions but still error is coming :( any other suggestions please
Paramaa 15-Feb-14 4:32am View    
Thanks Mr.Kornfeld Eliyahu Peter. It's our code problem. The code has more loops that only reason to CPU usage was goes to high. Now , we try to improve code performance using linq. Thanks a lot. Thanks for advance.
Paramaa 11-Jan-14 9:39am View    
It's not possible in asp.net set change id dynamically and also set two different id's in a single data-pager. Try to use two different data-pager or use that data-pager parallel.
Paramaa 11-Jan-14 7:43am View    
But to my amazement i got the result like when i entered a wrong number suppose

34.45.
the message appeared "alert("Please enter numeric value!");"
And the text is empty.

How this is possible. As I have not clicked outside the textbox,So it should not fire. Kindly help me understanding this.



Atually this alert message came from function validate1() { not in function onblurvalidate() { , please check it is using put the debugger inside two function.
Paramaa 11-Jan-14 7:33am View    
Actually , the validate1 client method is called and validate the textbox value, It's through right error message to you. You did called validation method through onkeyup client method. isNaN mean check is it not a number.

if (isNaN(num) == true) {

In this line checking the correct value.

if num = 99.63

isNaN(num) result as true;


if num = 99.63.

isNaN(num) result as false;