我在ASP:Button的服务器端有这段代码,工作正常。
div_message.InnerHtml = "Verificando Autentificación...<img src='../../res/loader bar.gif' >"
但不知何故,当我添加更多代码时,.innerhtml属性未显示.gif加载程序
Dim oCn As SqlConnection = Nothing
Try
oCn = New SqlConnection("Initial Catalog=" + _DataBaseName + ";Data Source=" + _SQL_Host + ";User Id=" + _SQL_Login + ";pwd=" + _SQL_Password)
oCn.Open()
Catch ex As Exception
id_div_message.InnerHtml = "No ha podido establecerse la conexión con el servidor"
Exit Sub
End Try
答案 0 :(得分:1)
InnerHtml将设置div的全部内容。您必须附加而不是仅设置div的值。
id_div_message.InnerHtml += "No ha podido establecerse la conexión con el servidor"