Click here to Skip to main content
15,909,332 members

Comments by Donthi Thirupathi Reddy (Top 5 by date)

Donthi Thirupathi Reddy 31-Jul-12 9:24am View    
Thank you! It really helped me.
It is working fine for ctrl+v, but not if we do mouse right click + paste.
Any help on this?
Donthi Thirupathi Reddy 31-Jul-12 1:36am View    
I have tried the below approach, It is working fine on IE,Safari,Chrome but not working on Mozilla Firefox, Any thoughts on this?

<HTML><head></head><body>
<form name="myForm">
Text: <input type="text" name="myText"
önKeyUp = "fncKeyLength(this);">
</form>
<script>
function fncKeyLength(text){
if (window.event.ctrlKey){
if (window.event.keyCode == 86) {
alert("<br />The string is this long: " + text.length);

}
}}
</script></body></HTML>
Donthi Thirupathi Reddy 20-Aug-11 5:34am View    
Thanks for your reply
Its giving error at gvTest.DataSource.
gvTest means GridView1?
Donthi Thirupathi Reddy 16-Jun-11 2:59am View    
Thanx, your idea Solved my problem
Donthi Thirupathi Reddy 4-May-11 2:44am View    
Earlier i used that code but after deployement its not working on the server