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

ASP.NET

 
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 
AnswerRe: Accepting Only Numeric Value in TextBox Pin
Sathesh Sakthivel13-Jul-07 7:13
Sathesh Sakthivel13-Jul-07 7:13 
<script type="text/javascript"><br />
function filter(e) {<br />
var ascii;<br />
if (e && e.charCode) {<br />
ascii = e.charCode;<br />
} else if (event && event.keyCode) {<br />
ascii = event.keyCode;<br />
} else {<br />
return true;<br />
}<br />
<br />
if (ascii < 48 || ascii > 57) return false;<br />
return true;<br />
}<br />
<br />
window.onload = function () {<br />
document.forms[0].elements['test'].onkeypress = filter;<br />
document.forms[0].elements['test'].onpaste =<br />
function () {<br />
return false;<br />
}<br />
}<br />
</script><br />
.....<br />
<form><br />
<input type="text" name="test" /><br />
</form><br />


This might Help you.

Regards,

Satips.Rose | [Rose]

Don't walk in front of me, I may not follow;
Don't walk behind me, I may not lead;
Walk beside me, and just be my friend. - Albert Camus


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 
GeneralRe: Authentication Pin
DarrollWalsh14-Jul-07 4:01
DarrollWalsh14-Jul-07 4:01 

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.