eRace System Sales and Member Lookup Functions

eRace System Sales and Member Lookup

BtnFetch_Click Event

This code handles the Click event of the BtnFetch button. It retrieves member information based on the provided MemberID and selected sales type.

Protected Sub BtnFetch_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles BtnFetch.Click
    Search.Text = Search.Text.Trim
    If SalesType.SelectedIndex = 3 Then
        If Search.Text.Length = 0 Then
            FormMessage.Text = "Please enter a MemberID to be searched."
      
Read More