Something like below. You need to loop through the items and find the control for
Salary
.
Dim Repeater1 As Repeater = TryCast(e.Item.FindControl("Repeater1"), Repeater)
For Each item In Repeater1.Items
dim txtSalary As TextBox = TryCast(item.FindControl("txtSALARY"), TextBox)
Next