validation
-
i have a textbox field , there i want to insert only the numeric values. i am using the RegularExpressionValidator / custom validator , there in the validation group i am writing [0-9] , but this is not working , after i insert the alphanumeric values, afterwards, it get postback Please help.
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
-
i have a textbox field , there i want to insert only the numeric values. i am using the RegularExpressionValidator / custom validator , there in the validation group i am writing [0-9] , but this is not working , after i insert the alphanumeric values, afterwards, it get postback Please help.
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
i think u use range validater and set type property integer and min. and max value
Piyush Vardhan Singh
-
i think u use range validater and set type property integer and min. and max value
Piyush Vardhan Singh
hi sonia u can use java script for this whic allows the user to enter the numerics only. in text box onkeypress u call this function function Validate_OnKeyPress(iKeyascii) { if(iKeyascii >= 48 && iKeyascii <= 57 ) { return true; } else { return false; } }
-
hi sonia u can use java script for this whic allows the user to enter the numerics only. in text box onkeypress u call this function function Validate_OnKeyPress(iKeyascii) { if(iKeyascii >= 48 && iKeyascii <= 57 ) { return true; } else { return false; } }
onkeypress is the funciton that i will add in the attribute of the textbox?
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
-
i have a textbox field , there i want to insert only the numeric values. i am using the RegularExpressionValidator / custom validator , there in the validation group i am writing [0-9] , but this is not working , after i insert the alphanumeric values, afterwards, it get postback Please help.
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
hey sonia here is solution for ur problem.. u must use RegularExpressionValidator Display="None" ErrorMessage="Postal Code - accepts only numeric digits." ValidationGroup="iaValidator" ValidationExpression="[0-9]*">
Hello Forum Always be in touch to help about the topic ASP.NET
-
hey sonia here is solution for ur problem.. u must use RegularExpressionValidator Display="None" ErrorMessage="Postal Code - accepts only numeric digits." ValidationGroup="iaValidator" ValidationExpression="[0-9]*">
Hello Forum Always be in touch to help about the topic ASP.NET
Thank u Boss U r rt
Piyush Vardhan Singh
-
i have a textbox field , there i want to insert only the numeric values. i am using the RegularExpressionValidator / custom validator , there in the validation group i am writing [0-9] , but this is not working , after i insert the alphanumeric values, afterwards, it get postback Please help.
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.