Click here to Skip to main content
15,890,741 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
I have a textbox on which i check duplicate record on text changed.
but i also want the textbox to check for duplicate records on lost focus
in asp.net c#
I am not able to write code for lost focus or how to implement the scenario
help me with some examples or pseudo code
Please Help
Posted
Updated 30-Aug-13 7:53am
v2
Comments
[no name] 30-Aug-13 13:51pm    
Help you with what? You would need to ask some sort of a question or describe a problem before you could reasonably expect any kind of help.

Refer this link

Calling Javascript on Textbox loss of focus[^]

There,OnBlur event is added at Page_Load. Once the TextBox loses the focus,javascript function will be called. You can do your stuff in that function.

Regards..:)
 
Share this answer
 
v2
Comments
Priyanka Bhagwat 31-Aug-13 1:25am    
Thank You Rohan Leuva!!!! :)
Thanks7872 31-Aug-13 1:42am    
You are welcome.. :-)
write code on TextChanged event of textbox
C#
protected void Textbox_TextChanged(object sender, EventArgs e)
        {
             code....
        }


Or

write javascript on onBlur of textbox
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900