alert toute simple dans le code asp
bonjour a tous!
J'aimerai savoir s'il y a un moyen tt simple d'insérér une alerte
moi je veu en mettre une a cette endroit je ne sais pas comment faire
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| if pc="" then
varSQL = varSQL & "AND local_users.user_name='" & util & "'" & _
"group by computers.computer_name,software.software_name"&_
";"
end if
if util="" then
varSQL = varSQL & "AND computers.computer_name='" & pc & "'" & _
"group by computers.computer_name,software.software_name"&_
";"
end if
if pc<>"" and util<>"" then
varSQL = varSQL & "AND local_users.user_name='" & util & "' AND computers.computer_name='" & pc & "'"&_
"group by computers.computer_name,software.software_name"&_
";"
end if
if pc="" and util="" then
??????<---- Mettre une alerte pour dire que les champs st vides
end if |
merci ;)