Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Special Mark

Status
Not open for further replies.

softboy12

ISP
Feb 19, 2004
66
CH
Hi all

i want to do the following with the expression below
--------------------------------------------------
<% If x_gesperrt = True Then %>
---------------------------------------------------
if the value above in the database is true there shoud pop up a warning window which says that the customer is locked

how can i do this?

many thanks in advance


best regards

E.Altherr

 
You may try something like this using javascript:

Code:
<% If x_gesperrt = True Then %>
<script type="text/javascript">
alert("User Locked!")
window.location= "originalpage.htm"
</script>
End If

hope that helps

VJ
 
thanks amorous

it works fine, exactly as i excpeted

best regards

and happy weekend

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top