<script language="jscript" type="text/jscript" runat="server">
// 基于C的JScript服务端脚本可以实现函数重载
function ShowMsg(msg){
return Show_Msg(msg,""); // Show_Msg函数为ASP函数
}
function ShowMsg(msg,info){
return Show_Msg(msg,info);
}
</script>
<%
Function Show_Msg(msg,info)
Show_Msg = msg & info
End Function
Response.Write("函数名 ShowMsg(msg) 一个参数 : " & ShowMsg("一个参数") & "<br /><br />")
查看更多...