hi refer below threads:
http://www.aspforums.net/Threads/927828/how-to-display-special-remain/
I used below code...
<script type="text/javascript">
$(function () {
var i = 0;
$('[id*=TxtSMS]').on("keypress", function () {
$('[id*=LblCount]').html($(this).val().length);
if ($(this).val().length % 70 == 0) {
i = $(this).val().length / 70;
$('[id*=Lblsend]').html(i);
}
});
});
</script>
it worked correctly...
now I want copy text from word and paste it in TxtSMS when I do it in Lblcount it will display number of character corectly but it doesn't show any thing in Lblsend...
I want when I type text or copy text from other place it show number in Lblsend
best regards
neda