怎样用.net实现新消息的语音提醒?
发布网友
发布时间:2022-05-16 15:00
我来回答
共2个回答
热心网友
时间:2023-10-27 03:51
你可以使用这个办法实现语音提醒:
在某人登录时,在登录成功的欢迎页面的CS里判断一下他有没有短消息,如果有的话就打印<bgsound src="有语音提醒的文件" loop="1">如:
首先在前台页面添加一个Lable他的ID是Label1
protected void Page_Load(object sender, EventArgs e)
{
if(有短消息==true)
this.Label1.Text = "<bgsound src='语音提示.wma' loop='1'>";
}
热心网友
时间:2023-10-27 03:51
没听懂能补充下吗?