Click here to Skip to main content
15,914,642 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Sending Email from Simple HTML Page Pin
Sathesh Sakthivel13-Jul-07 7:15
Sathesh Sakthivel13-Jul-07 7:15 
AnswerRe: Sending Email from Simple HTML Page Pin
Guffa13-Jul-07 9:50
Guffa13-Jul-07 9:50 
AnswerRe: Sending Email from Simple HTML Page Pin
Fred_Smith13-Jul-07 12:02
Fred_Smith13-Jul-07 12:02 
Questionhow to access the posted data to webpage from outside application. Pin
veerugadde13-Jul-07 5:54
veerugadde13-Jul-07 5:54 
QuestionAccepting Only Numeric Value in TextBox Pin
Ajeet mittal13-Jul-07 5:47
Ajeet mittal13-Jul-07 5:47 
AnswerRe: Accepting Only Numeric Value in TextBox Pin
Bino B13-Jul-07 7:06
Bino B13-Jul-07 7:06 
AnswerRe: Accepting Only Numeric Value in TextBox Pin
Sathesh Sakthivel13-Jul-07 7:13
Sathesh Sakthivel13-Jul-07 7:13 
AnswerRe: Accepting Only Numeric Value in TextBox Pin
Fred_Smith13-Jul-07 9:46
Fred_Smith13-Jul-07 9:46 
This Javascript function

function chkQty(qty) {
var regex = /^\d+$/;
if ( !regex.test(qty) ) {
alert('Please enter a number larger than 0');
return false;
}
return true;
}

will return true only for +ve whole numbers passed to it, so you can use it to check the textbox entry on submiting the form, or even on the onblur event of the box itself
AnswerRe: Accepting Only Numeric Value in TextBox Pin
arslanjatt13-Jul-07 18:57
arslanjatt13-Jul-07 18:57 
AnswerRe: Accepting Only Numeric Value in TextBox Pin
Urs Enzler14-Jul-07 4:32
Urs Enzler14-Jul-07 4:32 
Questionannoying problem Pin
boyindie13-Jul-07 5:24
boyindie13-Jul-07 5:24 
AnswerRe: annoying problem Pin
kubben13-Jul-07 5:40
kubben13-Jul-07 5:40 
GeneralRe: annoying problem Pin
boyindie13-Jul-07 5:42
boyindie13-Jul-07 5:42 
GeneralRe: annoying problem Pin
kubben13-Jul-07 5:45
kubben13-Jul-07 5:45 
GeneralRe: annoying problem Pin
boyindie13-Jul-07 5:49
boyindie13-Jul-07 5:49 
GeneralRe: annoying problem Pin
kubben13-Jul-07 5:55
kubben13-Jul-07 5:55 
QuestionProblem in mailto: Pin
rohitshrivastava13-Jul-07 5:05
rohitshrivastava13-Jul-07 5:05 
AnswerRe: Problem in mailto: Pin
kubben13-Jul-07 5:39
kubben13-Jul-07 5:39 
AnswerRe: Problem in mailto: Pin
Jon Sagara13-Jul-07 5:48
Jon Sagara13-Jul-07 5:48 
AnswerRe: Problem in mailto: Pin
Guffa13-Jul-07 6:29
Guffa13-Jul-07 6:29 
QuestionAuthentication Pin
boyindie13-Jul-07 3:58
boyindie13-Jul-07 3:58 
AnswerRe: Authentication Pin
Paul Conrad13-Jul-07 4:22
professionalPaul Conrad13-Jul-07 4:22 
GeneralRe: Authentication Pin
boyindie13-Jul-07 5:39
boyindie13-Jul-07 5:39 
GeneralRe: Authentication Pin
DarrollWalsh14-Jul-07 4:01
DarrollWalsh14-Jul-07 4:01 
GeneralRe: Authentication Pin
Paul Conrad14-Jul-07 11:35
professionalPaul Conrad14-Jul-07 11:35 

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.