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

ASP.NET

 
QuestionSending Email from Simple HTML Page Pin
Khan.Bangash13-Jul-07 6:21
Khan.Bangash13-Jul-07 6:21 
AnswerRe: Sending Email from Simple HTML Page Pin
Bino B13-Jul-07 7:04
Bino B13-Jul-07 7:04 
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 
u can do validation using Javascript.
function IsNumeric(sText)
{
var ValidChars = "0123456789.";
var IsNumber=true;
var Char;


for (i = 0; i < sText.length && IsNumber == true; i++)
{
Char = sText.charAt(i);
if (ValidChars.indexOf(Char) == -1)
{
IsNumber = false;
}
}
return IsNumber;

}


Regards
Bino

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 
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 

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.