1
Answer

How to send bulk email in asp.net

Satyapriya Nayak

Satyapriya Nayak

14y
3.7k
1

Hi,
How to send bulk email in asp.net?
Thanks
Answers (1)
0
Rajeesh Menoth

Rajeesh Menoth

NA 24.7k 629.4k 8y
Hi,
Please check the following reference :
http://stackoverflow.com/questions/40106009/how-create-text-box-which-not-allow-blank-space-using-javascript
Accepted
1
Pradeep Sahoo

Pradeep Sahoo

NA 5.8k 1.1m 8y
var text = document.getElementById('txtText');
text.addEventListener('input', function(e){
var keyCode = e.keyCode ? e.keyCode : e.which;
this.value = this.value.replace(/\s/g, '')
if(keyCode === 32) return;
})
<input type='text' id="txtText">
event code 32 represent white space .
1
Bikesh Srivastava

Bikesh Srivastava

NA 19.8k 835k 8y
  1. varel=document.getElementsByName("10010input")[0];
  2. varval=el.value.replace(/\s/g,"");
  3. alert(val);
You can use code like this..