TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Mansoor Mohammed
NA
126
0
comma separator function
Jan 27 2019 10:22 PM
My code is allowing AlphaNUmeric and Dash/Minus(-), It need to accept Commas(,) also.
Can someOne please help me on this.
function AlphaNumericOnlyDash() {
if (!((event.keyCode >= 48 && event.keyCode <= 57) || event.keyCode == 45 || (event.keyCode >= 65 && event.keyCode <= 90) || (event.keyCode >= 97 && event.keyCode <= 122))) {
CancelEvent();
}
}
Reply
Answers (
1
)
My ASP .NET project is not loading
how to bind drop down lists in c#?