VB.net 应用积累

前端之家收集整理的这篇文章主要介绍了VB.net 应用积累前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

function getSex(str)
if str="0" then
getSex="男"
else
getSex="女"
end if
end function

可以用在response里


Response.Write " <option value="&rs("sex")&">"&getSex(rs("sex"))&"</option>"&VbCrLf

--------------------------------------------------------------------------------------------

if <条件> then
<多条语句>
elseif <条件> then
<多条语句>
elseif <条件> then
<多条语句>
……
else
<多条语句>
end if

说明:(1)then必须放在if或elseif语句的后面    (2)else是可选项

原文链接:https://www.f2er.com/vb/258378.html

猜你在找的VB相关文章