Hi Team,
I have a loginpage where i can access the loginpage with only numerics but i want to accept both numeric as well as charcters also..using C#
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
sandeep kodepakaPosted Jan 14, 2011, 12:22 AM
I got the answer, actually user should accept Characters and Numerics,
code:
Userid= txtUsername.text;
if(userid.ToUpper() !="Char")
{
TxtUsername.Text=Userid.substring(TextUsername.TExt.Length);
}
George OnofreiPosted Jan 13, 2011, 7:31 AM