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
Abhijit Patil
NA
3.8k
1.6m
how to pass javascript return variable to code behind
Apr 12 2015 6:35 AM
hi folks
i am write one javascript function
as below
i want to pass the a value to the my code behind .how i pass it
<script type="text/javascript">
function myKeyPress(e) {
var keynum;
if (window.event) { // IE
keynum = e.keyCode;
} else
if (e.keyCode==13) { // Netscape/Firefox/Opera
keynum = e.which;
alert(String.fromCharCode(keynum));
}
else if (e.keyCode == 65) {
return false;
}
var a = String.fromCharCode(keynum);
}
</script>
Reply
Answers (
4
)
Cross Domain Web Services in ASP.Net
Master Page Error - Ambiguous match found.