Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want the masked text for the IPAddress in ASP.Net.

and below are the ipaddress which are some possible addresses.

Ex:

192.168.30.2

10.1.1.2

31.23.212.2

So, number one has 3 numbers, but number 2 has only 2. Right now, the default MaskedTextBox makes you enter in all three numbers before going to the next octet.

Thanks in advance,

share|improve this question

3 Answers

up vote 2 down vote accepted

You can View This link

AJAX

This one is great Ajax solution.

share|improve this answer
I'm afraid that won't help, because it doesn't handle various situations, only fixed strings. That means, you would need to write IP like this: 010.001.001.002... Or is there any possible workaround? – walther Mar 30 '12 at 11:23
ok, Then you can use a javascript which check that at least three(.) in your textbox. so then you can apply like 12.1.2.3 or 121.32.222.111 etc. – Jay Magwadiya Mar 30 '12 at 11:27

Try to use 990.990.990.990 or ###.###.###.### for your Mask property

share|improve this answer

As far as I know, you would need to write a javascript function yourself. MaskEdit included in asp.net toolkit offers only fixed mask, which means, you would need to have IP address in a format like this:

010.001.001.002

That is, to say at least, ugly. If someone knows of any workaround for this, I'd gladly see it.

So, my solution would be to use the regular expression for IP address and write a JS function, that reacts on user input according to this expression.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.