我正在使用 Visual Studio 2010 制作一个 asp.net 应用程序。我有一个文本字段和一个按钮,可以调用文本字段中字符串上的方法。
Enter your address here: <asp:TextBox ID="tb_address" runat="server" ></asp:TextBox>
<asp:Button Text="Submit" runat="server" onclick="GetLatLong" ></asp:Button>
在按钮的 C# 文件中,我有我的 GetLatLong 方法:
protected void GetLatLong(object sender, EventArgs e)
{
String address = tb_address.Text;
String query = "http://maps.googleapis.com/maps/api/geocode/xml?address=";
address = address.Replace(" ", "+");
query += address + "&sensor=false";
XmlDocument xDoc = new XmlDocument();
xDoc.Load(query);
String lat = xDoc.SelectSingleNode("/GeocodeResponse/result/geometry/location/lat").InnerText;
String lon = xDoc.SelectSingleNode("/GeocodeResponse/result/geometry/location/lng").InnerText;
}
如何让我的 lat 和 lon 字符串显示在我的 html 页面上?