Click here to Skip to main content
15,916,288 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionEncrypting a password!! Pin
Sonu.T28-Sep-06 5:53
Sonu.T28-Sep-06 5:53 
AnswerRe: Encrypting a password!! Pin
Not Active28-Sep-06 6:04
mentorNot Active28-Sep-06 6:04 
QuestionGridView RowCommand Pin
John Gathogo28-Sep-06 5:45
John Gathogo28-Sep-06 5:45 
AnswerRe: GridView RowCommand Pin
minhpc_bk28-Sep-06 15:50
minhpc_bk28-Sep-06 15:50 
Questionadding numeric values of two textboxes and displaying in third textbox. Pin
pranavcool28-Sep-06 4:28
pranavcool28-Sep-06 4:28 
AnswerRe: adding numeric values of two textboxes and displaying in third textbox. Pin
Guffa28-Sep-06 4:57
Guffa28-Sep-06 4:57 
AnswerRe: adding numeric values of two textboxes and displaying in third textbox. Pin
albCode28-Sep-06 5:25
albCode28-Sep-06 5:25 
AnswerRe: adding numeric values of two textboxes and displaying in third textbox. Pin
John Gathogo28-Sep-06 6:42
John Gathogo28-Sep-06 6:42 
If by 'automatically' you mean you don't intend to have the computation done in an event (say click) of a fourth control (say a button), then you need to place the code in the LostFocus event of both Textbox1 and Textbox2. However, you may need to validate the contents of the two textboxes

For Example;

Private Sub Textbox1_LostFocus(ByVal sender As System.Object, e As System.EventArgs) Handles Textbox1.LostFocus
If Textbox1.Text.Length > 0 AndAlso IsNumeric(Textbox1.Text.Length) AndAlso Textbox2.Text.Length > 0 AndAlso IsNumeric(Textbox2.Text.Length) Then
Textbox3.Text = CDbl(Textbox1.Text) + CDbl(Textbox2.Text)
End If
End Sub

But you may possibly need to do more than this

QuestionRepeater and Runtime Pin
shapper28-Sep-06 4:23
shapper28-Sep-06 4:23 
AnswerRe: Repeater and Runtime Pin
Not Active28-Sep-06 5:05
mentorNot Active28-Sep-06 5:05 
QuestionRepeater and Label Pin
shapper28-Sep-06 4:01
shapper28-Sep-06 4:01 
AnswerRe: Repeater and Label Pin
Not Active28-Sep-06 4:09
mentorNot Active28-Sep-06 4:09 
AnswerRe: Repeater and Label Pin
Meax28-Sep-06 7:32
Meax28-Sep-06 7:32 
QuestionHow to build RPC BASED WEB SERVICE IN ASP.NET 2.0 Pin
Yuwraj28-Sep-06 2:17
Yuwraj28-Sep-06 2:17 
AnswerRe: How to build RPC BASED WEB SERVICE IN ASP.NET 2.0 Pin
Jim Conigliaro28-Sep-06 2:41
Jim Conigliaro28-Sep-06 2:41 
GeneralRe: How to build RPC BASED WEB SERVICE IN ASP.NET 2.0 Pin
Yuwraj28-Sep-06 2:57
Yuwraj28-Sep-06 2:57 
GeneralRe: How to build RPC BASED WEB SERVICE IN ASP.NET 2.0 Pin
Yuwraj28-Sep-06 4:30
Yuwraj28-Sep-06 4:30 
GeneralRe: How to build RPC BASED WEB SERVICE IN ASP.NET 2.0 Pin
Jim Conigliaro28-Sep-06 4:40
Jim Conigliaro28-Sep-06 4:40 
GeneralRe: How to build RPC BASED WEB SERVICE IN ASP.NET 2.0 Pin
Yuwraj28-Sep-06 19:51
Yuwraj28-Sep-06 19:51 
GeneralRe: How to build RPC BASED WEB SERVICE IN ASP.NET 2.0 Pin
Jim Conigliaro29-Sep-06 2:12
Jim Conigliaro29-Sep-06 2:12 
QuestionChange value on Page1 from Page2 Pin
Nitin198128-Sep-06 1:29
Nitin198128-Sep-06 1:29 
AnswerRe: Change value on Page1 from Page2 Pin
ToddHileHoffer28-Sep-06 2:25
ToddHileHoffer28-Sep-06 2:25 
GeneralRe: Change value on Page1 from Page2 Pin
Nitin198128-Sep-06 2:59
Nitin198128-Sep-06 2:59 
AnswerRe: Change value on Page1 from Page2 Pin
Not Active28-Sep-06 2:29
mentorNot Active28-Sep-06 2:29 
GeneralRe: Change value on Page1 from Page2 Pin
Nitin198128-Sep-06 3:01
Nitin198128-Sep-06 3:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.