在vb.net中使用push.js时出错

时间:2018-01-11 17:13:48

标签: javascript vb.net notifications push.js

我正在尝试使用push.js库和vb.net进行一些浏览器通知 Image of my notification

通知有效,但我的问题是如果需要,我想同时发送多个通知。数据来自我的数据库,通常只有一个数据行。

我的问题是,它只显示一个通知

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

我正在使用“for”但我只收到一条通知,这是我需要的示例enter image description here

一些想法?如果我使用html或aspx和js和固定信息工作,但当我包含它与vb.net只显示一个。

0 个答案:

没有答案