Click here to Skip to main content
16,007,610 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionballon tooltip Pin
Mogaambo15-Jan-09 3:21
Mogaambo15-Jan-09 3:21 
AnswerRe: ballon tooltip Pin
ToddHileHoffer15-Jan-09 3:44
ToddHileHoffer15-Jan-09 3:44 
QuestionDisable web service from it's own code Pin
thorsman9915-Jan-09 3:05
thorsman9915-Jan-09 3:05 
AnswerRe: Disable web service from it's own code Pin
ToddHileHoffer15-Jan-09 3:35
ToddHileHoffer15-Jan-09 3:35 
GeneralRe: Disable web service from it's own code Pin
thorsman9915-Jan-09 3:45
thorsman9915-Jan-09 3:45 
GeneralRe: Disable web service from it's own code Pin
ToddHileHoffer15-Jan-09 5:35
ToddHileHoffer15-Jan-09 5:35 
QuestionRegular Expression Problem Pin
Member 345333115-Jan-09 2:54
Member 345333115-Jan-09 2:54 
AnswerRe: Regular Expression Problem Pin
Jim Conigliaro15-Jan-09 11:08
Jim Conigliaro15-Jan-09 11:08 
The regular expression would be:

(i|I)\d{5}\.\d

(i|I) -> either a lower case or an upper case i
\d{5} -> five sequential digits
\. -> the decimal point
\d - one digit

so the fully escaped regex on .net would be
var exp = new RegExp("(i|I)\\d{5}\\.\\d");

Note: you could also use the ignore case Regex option flag and just include the i instead of (i|I)

P.S. I would recommend use of the Regex Coach - a nifty little tool for designing and testing regular expressions: http://www.weitz.de/regex-coach/[^]


GeneralRe: Regular Expression Problem Pin
Member 345333115-Jan-09 17:53
Member 345333115-Jan-09 17:53 
QuestionLog out in closing Pin
ahmed eldeghedy15-Jan-09 2:28
professionalahmed eldeghedy15-Jan-09 2:28 
AnswerRe: Log out in closing Pin
Brij15-Jan-09 2:36
mentorBrij15-Jan-09 2:36 
AnswerRe: Log out in closing Pin
Abhijit Jana15-Jan-09 2:45
professionalAbhijit Jana15-Jan-09 2:45 
AnswerRe: Log out in closing Pin
Christian Graus15-Jan-09 3:49
protectorChristian Graus15-Jan-09 3:49 
GeneralRe: Log out in closing Pin
Abhijit Jana15-Jan-09 5:05
professionalAbhijit Jana15-Jan-09 5:05 
JokeRe: Log out in closing Pin
ahmed eldeghedy15-Jan-09 21:21
professionalahmed eldeghedy15-Jan-09 21:21 
QuestionCreating a web page using dynamic data from xml file? Pin
Suj_7815-Jan-09 1:57
Suj_7815-Jan-09 1:57 
AnswerRe: Creating a web page using dynamic data from xml file? Pin
Not Active15-Jan-09 2:03
mentorNot Active15-Jan-09 2:03 
QuestionAdding RequiredFieldValidtors programmatically Pin
meeram39515-Jan-09 0:41
meeram39515-Jan-09 0:41 
AnswerRe: Adding RequiredFieldValidtors programmatically Pin
Abhijit Jana15-Jan-09 1:03
professionalAbhijit Jana15-Jan-09 1:03 
AnswerRe: Adding RequiredFieldValidtors programmatically Pin
SachinKumar M15-Jan-09 1:10
SachinKumar M15-Jan-09 1:10 
QuestionGridview Rowcommand Problem Pin
soniasan14-Jan-09 23:57
soniasan14-Jan-09 23:57 
AnswerRe: Gridview Rowcommand Problem Pin
Rajeesh MP15-Jan-09 1:24
Rajeesh MP15-Jan-09 1:24 
AnswerRe: Gridview Rowcommand Problem Pin
Rajeesh MP15-Jan-09 1:25
Rajeesh MP15-Jan-09 1:25 
QuestionAsp.net application deployment, on Webserver Pin
Hassan Akhtar Ali14-Jan-09 23:55
Hassan Akhtar Ali14-Jan-09 23:55 
AnswerRe: Asp.net application deployment, on Webserver Pin
Rajeesh MP15-Jan-09 1:54
Rajeesh MP15-Jan-09 1:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.