MsgBox

Dim Result As Integer

Result=MsgBox(“Quiere Borrar el User (yes/No)”,36) <<<< This no works on web how i do it
If Result=6 then
SqlStr=“Delete From userinfo Where userid=’” + TxtUserId.Text.Trim + “’”
DbConnMain.SQLExecute(SqlStr)
If DbConnMain.Error Then
MsgBox DbConnMain.ErrorMessage
exit sub
End If

End If

Alexis, for the Web MessageBox only the Message parameter is supported. You would need to use WebDialog instead.

ok Thanks