Click here to Skip to main content
15,901,001 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Checking the Two Values From TextBox and Compare the two TextBox Values (i have done those things) ...My Question is if the two values are Same i need to save those value into Database.. if not means i need to display a miessage ' The Two Values are Different, Do u Want To Continue ? '. if the user click 'Yes' means i need to save the value into Database. or else if the User click 'No' means no operation is needed..

Regards
Prince Antony G
Posted
Updated 11-Nov-11 1:13am
v2

 
Share this answer
 
Comments
Prince Antony G 11-Nov-11 7:35am    
Thanks for ur Reply..
RaviRanjanKr 11-Nov-11 15:43pm    
Nice Links, My 5+
member60 12-Nov-11 4:43am    
Thank You Ravi
Hope it will helps
Confirm box
 
Share this answer
 
Comments
Prince Antony G 11-Nov-11 7:35am    
Thanks for ur Reply..
RaviRanjanKr 11-Nov-11 15:43pm    
Nice Links, My 5+
uspatel 12-Nov-11 1:12am    
thanks
 
Share this answer
 
Comments
Prince Antony G 11-Nov-11 7:35am    
Thanks for ur Reply..
RaviRanjanKr 11-Nov-11 15:43pm    
Nice Links, My 5+
you Just Refer the Password Checking Code Both are Same :)
 
Share this answer
 
Comments
Prince Antony G 11-Nov-11 7:34am    
Same like that only but i used this checking in the Form Validation in user side.
You can write a function in the JS for comparison as follows
1.
C#
function fnCheck()
{
if(!confirm(‘Are you quite sure?’)) return false; 
}


on ClientClick of your button write following code

ASP.NET
<asp:Button ID="btnSave" runat="server" Text="Save" OnClick="lnkbtnSave_Click" OnClientClick="javascript: return fnCheck();">


in this case it JS returns false, it does not go to server for execution.

2.
Or you can add an attribute to that button to execute JS.
 
Share this answer
 
v2
Comments
Prince Antony G 11-Nov-11 7:35am    
Thanks for ur Reply..

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