Web浏览器读取查看器代码而不是源代码

时间:2013-07-28 17:44:51

标签: c# php

我在php文档上有这段代码

<?php echo '<script type="text/javascript">
        document.write( geoip_city() );
      </script>' ?>

在浏览器中打开后,它会返回您的城市名称,但在

WebClient client = new WebClient();

            string client2 = client.DownloadString("http://www.mywebsite/ip2.php");

            MessageBox.Show(client2);

它返回源代码。为什么会这样?

我正在使用this script for geolocation.

1 个答案:

答案 0 :(得分:0)

听起来您没有在服务器上正确设置PHP。

当你转到页面(http://www.mywebsite/ip2.php)时,源代码也出现在那里吗?你在运行什么服务器软件?