我正在尝试使用push.js库和vb.net进行一些浏览器通知
通知有效,但我的问题是如果需要,我想同时发送多个通知。数据来自我的数据库,通常只有一个数据行。
我的问题是,它只显示一个通知
For Each t_dtt_row As DataRow In t_dtt_notificaciones.Rows
str_url_img = "http://finalbca.16mb.com/homepageimages/notificationicon.png"
If t_dtt_row("nuevo") Then
t_str_script = "Push.create('Tienes una nueva notificación', {" & _
"body: '" & t_dtt_row("notificacion") & "'," & _
"icon: '" & str_url_img & "'," & _
"timeout: 6000" & _
"}); "
End If
ScriptManager.RegisterClientScriptBlock(Page, GetType(Page), "notificar", t_str_script, True)
Next
一些想法?如果我使用html或aspx和js和固定信息工作,但当我包含它与vb.net只显示一个。