Click here to Skip to main content
15,915,603 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: URL Blocked Pin
Shog94-Jan-06 18:58
sitebuilderShog94-Jan-06 18:58 
GeneralRe: URL Blocked Pin
RockyJames4-Jan-06 22:02
RockyJames4-Jan-06 22:02 
GeneralRe: URL Blocked Pin
Shog95-Jan-06 5:27
sitebuilderShog95-Jan-06 5:27 
GeneralRe: URL Blocked Pin
Christian Graus5-Jan-06 16:30
protectorChristian Graus5-Jan-06 16:30 
GeneralRe: URL Blocked Pin
Shog95-Jan-06 17:18
sitebuilderShog95-Jan-06 17:18 
QuestionSPAN Tag (Firefox) Pin
RadioButton4-Jan-06 12:34
RadioButton4-Jan-06 12:34 
AnswerRe: SPAN Tag (Firefox) Pin
Shog94-Jan-06 13:12
sitebuilderShog94-Jan-06 13:12 
Questiontest for numbers containing a decimal point Pin
john_paul4-Jan-06 11:50
john_paul4-Jan-06 11:50 
I know that I can use javascript to test for a number using the below, but I am having trouble figuring out how to use javascript to test for the entry of for example 100.00 or 100, the decimal point is messsing me up. Any help would be appreciated.

function TestKeyPress( obj, event ) {
var curChar = String.fromCharCode( event.keyCode );
var inpStr = obj.value + curChar
window.status = '';
obj.title = '';

result = inpStr.match( '^[0-9]+$' );
if ( ! result ) {
window.status = 'Please enter only numbers.';
obj.title = window.status;
event.returnValue = false;
event.cancel = true;
}
}


AnswerRe: test for numbers containing a decimal point Pin
Christian Graus4-Jan-06 12:35
protectorChristian Graus4-Jan-06 12:35 
AnswerRe: test for numbers containing a decimal point Pin
Guffa5-Jan-06 3:42
Guffa5-Jan-06 3:42 
QuestionVisual Studio 2003 vs Visual Studio 2005 Pin
Walter Dias4-Jan-06 11:25
professionalWalter Dias4-Jan-06 11:25 
AnswerRe: Visual Studio 2003 vs Visual Studio 2005 Pin
Christian Graus4-Jan-06 12:36
protectorChristian Graus4-Jan-06 12:36 
AnswerRe: Visual Studio 2003 vs Visual Studio 2005 Pin
Walter Dias4-Jan-06 12:47
professionalWalter Dias4-Jan-06 12:47 
Questionbody attributes Pin
munmat4-Jan-06 8:16
munmat4-Jan-06 8:16 
GeneralRe: body attributes Pin
Shog94-Jan-06 8:22
sitebuilderShog94-Jan-06 8:22 
AnswerRe: body attributes Pin
Curtis Schlak.4-Jan-06 8:56
Curtis Schlak.4-Jan-06 8:56 
QuestionCrosstab Report in DataGrid Pin
ProffK4-Jan-06 4:23
ProffK4-Jan-06 4:23 
QuestionJunk Email problem Pin
sujataghosh3-Jan-06 19:09
sujataghosh3-Jan-06 19:09 
GeneralRe: Junk Email problem Pin
Guffa4-Jan-06 1:14
Guffa4-Jan-06 1:14 
GeneralRe: Junk Email problem Pin
sujataghosh4-Jan-06 18:21
sujataghosh4-Jan-06 18:21 
AnswerRe: Junk Email problem Pin
Guffa9-Jan-06 1:40
Guffa9-Jan-06 1:40 
GeneralRe: Junk Email problem Pin
sujataghosh9-Jan-06 18:14
sujataghosh9-Jan-06 18:14 
AnswerRe: Junk Email problem Pin
Guffa11-Jan-06 21:54
Guffa11-Jan-06 21:54 
GeneralRe: Junk Email problem Pin
sujataghosh12-Jan-06 3:38
sujataghosh12-Jan-06 3:38 
QuestionDrill Down in Sql Reporting Services Pin
Sandhya Rani M.3-Jan-06 18:34
Sandhya Rani M.3-Jan-06 18:34 

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.