Saludos,
Tengo una cadena que quiero transformar en un documento html y mostrar en un control webbrowse desntro del mismo windows form, pero no eh conseguido cargar la web, aquí mi cadena:
Código vb:
Ver original'"<!DOCTYPE html>" & _
'"<html>" & _
'"<head>" & _
'"<script src=""http://maps.googleapis.com/maps/api/js?key=AIzaSyDY0kkJiTPVd2U7aTOAwhc9ySH6oHxOIYM&sensor=false"">" & _
'"</script>" & _
'"<script>" & _
'"var myCenter=new google.maps.LatLng(20.955533,-101.425283);" & _
'"function initialize()" & _
'"{" & _
'"var mapProp = {" & _
'"center:myCenter," & _
'"zoom:14," & _
'"mapTypeId:google.maps.MapTypeId.SATELLITE" & _
'"};" & _
'"var map=new google.maps.Map(document.getElementById(""googleMap""),mapProp);" & _
'"var marker=new google.maps.Marker({" & _
'"position:myCenter," & _
'"animation:google.maps.Animation.BOUNCE," & _
'"icon:'a.png'" & _
'"});" & _
'"marker.setMap(map);" & _
'"}" & _
'"google.maps.event.addDomListener(window, 'load', initialize);" & _
'"</script>" & _
'"</head>" & _
'"<body>" & _
'"<div><b>Google Api</b></div>" & _
'"<div id=""googleMap"" style=""width:500px;height:380px;"" align=""center""><center></center></div>" & _
'"</body>" & _
'"</html>"
He utilizado el StringWritter, pero sin ningún éxito....espero su valiosa ayuda.
Gracias!