Hi I have a problem displaying a message box on a web form. I have the for a windows form but I would like the equivalent for web form if this exists.
Below is the code:
What this code does is to display a message box when many addresses have been returned.
Could someone help??
Thanks
Critical5
Below is the code:
VB.NET:
Private Sub picklistProcessor_AddressMatchLevelExceeded(ByVal sender As Object, ByVal e As MatchLevelExceededEventArgs)
Dim result As DialogResult = MessageBox.Show("Too many address matches have been found. " & _
"Do you want to process this address as normal?", Application.ProductName, MessageBoxButtons.OKCancel)
e.Cancel = (result = Windows.Forms.DialogResult.Cancel)
End Sub
Could someone help??
Thanks
Critical5