我正在使用一个asp.net应用程序,其中一个页面数据我必须以json格式转换它。为此我在页面加载事件
中使用此页面上的代码
if (Request.QueryString["AppMode"] != null)
{
using (WebClient wc = new WebClient())
{
var json = wc.DownloadString("http://localhost:1469/WorldVentures/success-stories");
}
}

所以这里是验证查询字符串并基于它正在运行此代码,但由于它在同一站点和同一页面上运行,然后它一次又一次地加载此页面,我无法获取json数据这一页。 建议我在这里使用内容类型json。
答案 0 :(得分:1)
添加此代码。
protected void Page_Load(object sender, EventArgs e)
{
//run when first time page load
if (Page.IsPostBack)
{
//your code
}
}