我从服务器端调用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。
可能是什么问题。
请帮帮我。