zoukankan      html  css  js  c++  java
  • ASP判断当前页面上是否有参数ID传递过来

    遇到了一个这样的ASP问题:
    在当前页面上判断,是否有参数ID传递过来?
    如果没有,显示“没有参数传递过来”。
    如果有传递,但值为空,显示“存在参数,但参数为空”
    

      

    <%
    if (request("id"))=false then
    	response.write("不存在参数ID")
    else
    	response.write "有参数ID,"
    	if request("id")="" or isnull(request("id")) then
    		response.write "但参数为空"
    	else
    		response.write "参数是:"&request("id")
    	end if
    end if
    %>
    

      

  • 相关阅读:
    Oracle
    注解
    java 算法实现
    ConcurrentHashMap
    hashMap 1.8
    hashmap 1.7
    MySQL优化
    Mysql面试题
    tmux
    mysql 复制表结构、表数据的方法
  • 原文地址:https://www.cnblogs.com/uuxanet/p/3298871.html
Copyright © 2011-2022 走看看