我试图让我的.aspx文件中的标签在我的.cs文件中运行。我创建了一个方法,我认为它会将labelID
绑定到字符串变量中,就像在我的转发器中使用onitemcommand
一样。
转发码:
<asp:Repeater ID="Repeater_weatherReports" runat="server" onitemcommand="reptrData_ItemCommand">
<ItemTemplate>
<table id="tblWeather" border="0" visible="true">
<tr>
<th>
Weather Info
</th>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblCity_Country" Text='<%# Eval("main.city") %>' />
humidity:<asp:Label runat="server" ID="Label_humidity" Text='<%# Eval("main.humidity") %>' />
</td>
</tr>
<tr>
<td>
min:<asp:Label runat="server" ID="Label_min" Text='<%# Eval("main.temp_min") %>' />
max:<asp:Label runat="server" ID="Label_max" Text='<%# Eval("main.temp_max") %>' />
</td>
</tr>
</table>
</ItemTemplate>
</asp:Repeater>
C#代码:
public partial class _Default : System.Web.UI.Page
{
string city_name;
string temp_min;
string temp_max;
string humidity;
protected void Page_Load(object sender, EventArgs e)
{
}
protected void reptrData_ItemCommand(object source, RepeaterCommandEventArgs e)
{
Label lblCity = e.Item.FindControl("lblCity_Country") as Label;
city_name = lblCity.Text;
Label lblHumidity = e.Item.FindControl("Label_humidity") as Label;
humidity = lblHumidity.Text;
Label LblMin = e.Item.FindControl("Label_min") as Label;
humidity = lblHumidity.Text;
Label LblMax = e.Item.FindControl("Label_max") as Label;
temp_max = lblHumidity.Text;
}
protected void GetWeatherInfo(object sender, EventArgs e)
{
string appID = "hidden";
//string url = string.Format("http://api.openweathermap.org/data/2.5/weather?q={0}&units=metric&cnt=2&APPID={1}",txtCity.Text,appID);
string url = string.Format("http://api.openweathermap.org/data/2.5/forecast?q={0},us&units=metric&cnt=5&APPID={1}", txtCity.Text, appID);
using (WebClient client = new WebClient())
{
string json = client.DownloadString(url);
JavaScriptSerializer serializer = new JavaScriptSerializer();
WeatherInfo weatherinfo = serializer.Deserialize<WeatherInfo>(json);
Repeater_weatherReports.DataSource = weatherinfo.list;
Repeater_weatherReports.DataBind();
int i = 0;
foreach (List list in weatherinfo.list)
{
city_name = weatherinfo.list[i].main.city.name;
//lblDescription.Text = weatherinfo.list[0].weather[0].description;
temp_min = string.Format("{0}", Math.Round(weatherinfo.list[i].main.temp_min, 1));
temp_max = string.Format("{0}", Math.Round(weatherinfo.list[i].main.temp_max, 1));
humidity = weatherinfo.list[i].main.humidity.ToString();
// tblWeather.Visible = true;
i++;
}
}
当我的代码运行时,我会在行
上找到NullReferenceException
city_name = weatherinfo.list[i].main.city.name;
似乎我的reptrData_ItemCommand
方法没有从.aspx文件中调用(来自OnItemCommand
)
我做错了什么?
谢谢
答案 0 :(得分:2)
正如Koby所解释的,您可以使用foreach
元素来获取详细信息
但是在你的情况下,你会在下面的行中获得空引用异常
city_name = weatherinfo.list[i].main.city.name;
此错误也会出现,因为在索引0的列表中,main为null或city为null或name为null
使用以下条件将无效检查
foreach (List list in weatherinfo.list)
{
if (list.main != null && list.main.city != null && list.main.city.name != null )
{
city_name = list.main.city.name;
}
....
}