ASP实现语音分时问候

类别:Asp 点击:0 评论:0 推荐:

<bgsound src="wen.mid" loop="0">
<% dim weh
If Time >=#1:00:00 AM# And Time < #6:00:00 PM#  Then
  weh = "<bgsound src="1.mid" loop="0">"
Else  If Time >#6:00:00 AM# And Time < #9:00:00 PM#
  weh = "<bgsound src="2.mid" loop="0">"
 Else  If Time >#9:00:00 AM# And Time < #12:00:00 PM#
  weh = "<bgsound src="3.mid" loop="0">"
Else  If Time >#12:00:00 AM# And Time < #14:00:00 PM#
  weh = "<bgsound src="4.mid" loop="0">"
Else  If Time >=#14:00:00 AM# And Time < #17:00:00 PM#
  weh = "<bgsound src="4.mid" loop="0">"
Else  If Time >=#17:00:00 AM# And Time < #19:00:00 PM#
  weh = "<bgsound src="5.mid" loop="0">"
Else  If Time >=#19:00:00 AM# And Time < #24:00:00 PM#
  weh = "<bgsound src="6.mid" loop="0">"
End If
%>
<%=wen %>

上面的 X.MID 是的问候语音

 

 

 

 

2
<script language="javascript">
<!--
now = new Date(),hour = now.getHours()
if(hour < 6){document.write(''<bgsound src="sound1.mid" loop="infinite">'')}
else if (hour < 9){document.write(''<bgsound src="sound2.mid" loop="infinite">'')}
else if (hour < 12){document.write(''<bgsound src="sound3.mid" loop="infinite">'')}
else if (hour < 14){document.write(''<bgsound src="sound4.mid" loop="infinite">'')}
else if (hour < 17){document.write(''<bgsound src="sound5.mid" loop="infinite">'')}
else if (hour < 19){document.write(''<bgsound src="sound6.mid" loop="infinite">'')}
else if (hour < 22){document.write(''<bgsound src="sound7.mid" loop="infinite">'')}
else {document.write(''<bgsound src="sound8.mid" loop="infinite">'')}
// -->
</script>

 

本文地址:http://com.8s8s.com/it/it9123.htm