首页 > 学院 > 开发设计 > 正文

ASP写的自动生成SELECT表单的函数

2019-11-18 19:29:43
字体:
来源:转载
供稿:网友

对于asp高手当然没什么用了,但是对于刚入门的初学者和美工就有些用处了。

Function selectdo(a,d,b,c)
  Response.write"<select name='"&a&"'><option>"&d&"</option>"
  for i=b to c
    if i<10 then
      i="0"&i
    end if
  Response.write"<option>"&i&"</option>"
  next
  Response.write"</select>"
End Function

在此基础上还可以扩展出更完整的SELECT表单。

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表