C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Communities   Interview   Jobs   Projects   Offshore Development    
Silverlight Tutorials | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Revenue Sharing |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...

New Feature: Community Sites: Create your own .NET community website and start earning from Google AdSense ! It's Free !




Validation in TextBox in ASP.NET


Posted Date: 30 Aug 2008      Total Responses: 2

Posted By: LuckyIBM       Member Level: Silver     Points: 1


HI Everyone, I have a little problem...........

I have a textbox, I want to store 12 max digit in this TxtBox as 11.23456.789 formate. Means at 3 position will take as . and 8position is also take .


I m using this code
if (Spartno1.Text.Length!=0)
{
if ((Spartno1.Text.Substring(2,1)!=".") && (Spartno1.Text.Substring(8,1)!=".") && (Spartno1.Text.Length==12) )
{
Page.RegisterStartupScript("Message","<script language='javascript'>alert('Please Enter The Valid Part No! ');</script>");
return;
}
}
else
Spartno1.Text="";

but Problem is this if im inter as 12.334567890 then it not check at 8 position for . Pls help me




Responses

Author: Pradeep Kumar Chaudhary    30 Aug 2008Member Level: GoldRating:     Points: 4
The logic cannot meet to your position, what you want. Use for loop to do this work.The loop can not work properly the third condition (Spartno1.Text.Length==12) ) can't check whether the loop move.
So your logic is perfect but the loop cannot reach their top position.



Author: Gaurav Agrawal    31 Aug 2008Member Level: GoldRating:     Points: 3
use it regular expression validation for this and
use Regular Expression Library Site
http://www.regexlib.com
for proper expression as u want

GA


Post Reply
You must Sign In to post a response.
Next : Using Sessions in Login page and how to maintain the state in all pages of application
Previous : Change the Color of Text Content
Return to Discussion Forum
Post New Message
Category: ASP.NET

Related Messages



dotNet Slackers   BizTalk Adaptors    Web Design

it help desk

Contact Us    Privacy Policy    Terms Of Use