Introduction
You can prevent a drag and drop value from your page and a copy paste text in your textbox.
For example: I have a textbox:
<asp:TextBox ID="txtSeqNumber" runat="server" Width="150">
How can I prevent this? Most of the time, this error is reported by testers. The simplest solution is as follows.
Just add the following JavaScript in the code:
<asp:TextBox ID="txtSeqNumber" runat="server" onDrop="blur();return false;"
onpaste="return false" Width="150">
Because of blur()
function, the txtSeqNumber
lost its focus and we are not able to drag and drop the text.
Sandesh has a 11 years of total professional experience in a software development. He first handled the computer in his school days when he was in 7th std working on Lotus. In summer vacation, the school authorities allowed him and other students to use the computers for practicing Lotus and playing different games

.
He has done computer engineering. Currently he is working in Net 4.0 framework. Even though he is using .Net 4.0 framework for development but still he has not got a chance to work with newer technologies like MVC, WCF etc. However he always try to learn these technologies from his end and eagerly waiting for a chance to work with the newer technologies like MVC, WCF and Silverlight etc.