ASP.net form Double Entry - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T14:49:20Zhttp://stackoverflow.com/feeds/question/620508http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/620508/asp-net-form-double-entry1ASP.net form Double EntryDested2009-03-06T21:32:20Z2009-03-06T21:52:29Z
<p>I have a form that I need the user to be able to type something in a textbox, after they tab out have them enter in the same value in another textbox in proximity to it to assure they entered it in correctly. After that the second textbox is to disappear and they will continue to the next field without ever having a postback.</p>
<p>Anyone have any recommendations on how to do this most efficiently? Is there a control that will facilitate this for me?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/620508/asp-net-form-double-entry/620570#6205701Answer by Canavar for ASP.net form Double EntryCanavar2009-03-06T21:52:29Z2009-03-06T21:52:29Z<p>You can do it by javascript easily. on the onblur or onchange clientside events you should check two textbox's values.</p>
<p>An alternative option : maybe you want to use <a href="http://msdn.microsoft.com/en-us/library/db330ayw%28VS.71%29.aspx" rel="nofollow">CompareValidator</a> to compare values of your form elements. Don't forget to set EnableClientScript=true and use <a href="http://msdn.microsoft.com/en-us/library/f9h59855%28VS.80%29.aspx" rel="nofollow">ValidationSummary</a> control.</p>