在asp.net.cx中多次调用web url

时间:2016-10-08 10:25:59

标签: c# php asp.net web-services web

我正在尝试调用包含参数latlong的网址,我想多次调用该网页,直到asp应用程序关闭。

每当加载aspx页面时,我都会收到值但是为了获取更新的值,我必须刷新页面以反复调用page_Load函数。

我想要的是在不刷新aspx页面的情况下一次又一次地从URL获取值。

//my code of my aspx.cs file

public partial class locationtesting : System.Web.UI.Page
{
  public string longit, lat;
  protected void Page_Load(object sender, EventArgs e)
  {
    try
    {
        WebClient client = new WebClient();
        string downloadedString = client.DownloadString("url.php");
        string[] tokens = downloadedString.Split(':');
        string longitude = tokens[1];
        string latitude = tokens[3];

        this.longit = longitude;
        this.lat = latitude;

    }
    catch (Exception ee)
    {
        Response.Write("Exception: "+ee);
    }
  }
}

0 个答案:

没有答案