首页上一页 1 下一页尾页 1 条记录 1/1页
有关函数返回值的调用
发表在ASP.NET图书答疑
2011-01-04
是否精华
是
否
版块置顶:
是
否
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>eg1</title>
</head>
<body>
<script language="vbscript">
function doadd(v1)
v1=v1+1
doadd=v1+10
end function
</script>
doadd的值:<%=doadd(5)%>
</body>
</html>
运行的时候[font color=#FF0000]doadd的值[/font]后边的数据出不来? 请教高手了!
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>eg1</title>
</head>
<body>
<script language="vbscript">
function doadd(v1)
v1=v1+1
doadd=v1+10
end function
</script>
doadd的值:<%=doadd(5)%>
</body>
</html>
运行的时候[font color=#FF0000]doadd的值[/font]后边的数据出不来? 请教高手了!