- Home
·
- Active Server Pages
·
- Checking for no data posted. If there's data posted in the variable called NAME, it's displayed o
Checking for no data posted. If there's data posted in the variable called NAME, it's displayed o
Checking for no data posted. If there's data posted in the variable called "NAME", it's displayed on the screen.
Rate Checking for no data posted. If there's data posted in the variable called NAME, it's displayed o
(3(3 Vote))
<%
If request.querystring("name") = "" Then
Response.Write "Please enter a name!"
Else
Response.Write "Name: <B>" & request.querystring("name") & "</B>"
End If
%>
Checking for no data posted. If there's data posted in the variable called NAME, it's displayed o Comments
No comments yet — be the first to post one!
Post a Comment