我正在尝试调用包含参数lat
和long
的网址,我想多次调用该网页,直到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);
}
}
}