Javascript函数没有从服务器端调用

时间:2013-10-31 07:33:26

标签: javascript asp.net .net vb.net

我从服务器端调用javascript函数的位置有2分。

Public Sub FNLocationName(ByVal location As String)
        System.Web.UI.ScriptManager.RegisterClientScriptBlock(Page, GetType(Page), "javascript", "SetMap('" & location & "')", True)
    End Sub


    Public Sub FNZoomLevel(ByVal IntZoomLevel As Integer)
        System.Web.UI.ScriptManager.RegisterClientScriptBlock(Page, GetType(Page), "javascript", "zoomSet('" & IntZoomLevel & "')", True)
    End Sub

但是这给了我错误消息undefined SetMap(locname)

我也尝试过:

Public Sub FNLocationName(ByVal location As String)
        Page.ClientScript.RegisterStartupScript(Me.GetType(), "MyScript", "javascript:SetMap('" & location & "')", True)
    End Sub


    Public Sub FNZoomLevel(ByVal IntZoomLevel As Integer)
        Page.ClientScript.RegisterStartupScript(Me.GetType(), "MyScript", "javascript:zoomSet('" & IntZoomLevel & "')", True)
    End Sub

但是使用此代码,只调用SetMap函数,还应调用zoomset。

可能是什么问题。

请帮帮我。

0 个答案:

没有答案