L
Lei Guangfu
HI,
In Client Server model, we can get user option to decide
which code will be executed.
For example:
Dim IsRecordExist As Boolean
If IsRecordExist Then
If MessageBox.Show("The relevant record
already exists in the database. Do you want to overwrite
it?", "Overwrite?", MessageBoxButtons.OKCancel,
MessageBoxIcon.Question, MessageBoxDefaultButton.Button2,
MessageBoxOptions.RightAlign) = DialogResult.Cancel Then
Exit Sub
End If
End If
...... Continue
'End of Sample--------------------------------
in web-based program, How can I reach the same purpoose?
Anyone can give me some help?
Thanks in advance.
Lei Guangfu
In Client Server model, we can get user option to decide
which code will be executed.
For example:
Dim IsRecordExist As Boolean
If IsRecordExist Then
If MessageBox.Show("The relevant record
already exists in the database. Do you want to overwrite
it?", "Overwrite?", MessageBoxButtons.OKCancel,
MessageBoxIcon.Question, MessageBoxDefaultButton.Button2,
MessageBoxOptions.RightAlign) = DialogResult.Cancel Then
Exit Sub
End If
End If
...... Continue
'End of Sample--------------------------------
in web-based program, How can I reach the same purpoose?
Anyone can give me some help?
Thanks in advance.
Lei Guangfu