我的 PHP 代码是
$geourl = 'http://maps.google.com/maps/geo?key=' . $google_apikey .
'&output=json'. '&q=' . urlencode($_GET['url'] . ', USA').'&gl=us';
我的 ASPX 代码看起来像这样
Dim google_apikey As String="sdasdasd"
Dim geourl As String= "http://maps.google.com/maps/geo?key=" & google_apikey & _
"&output=json" & "&q=" & urlencode(request.QueryString("pc")& ", USA")"&gl=us"
我得到的错误是编译器错误消息:BC30205:预期语句结束。
而不是句点 (.) 我使用了 & 在 vb.net 中是否有效,上面的字符串 urlencode 有什么问题?