我想在我的列表中获取某个索引的值,该怎么做?我这里有一个返回游戏列表的方法:
public static List<BO.Game> GetGames()
{
List<BO.Game> listGame = new List<BO.Game>();
BO.Game game;
SqlConnection con = new SqlConnection();
try
{
con.ConnectionString = connectionString;
con.Open();
SqlCommand com = new SqlCommand();
com.Connection = con;
com.CommandType = CommandType.StoredProcedure;
com.CommandText = "GetDisplayPicOfContest";
SqlDataReader dr = com.ExecuteReader();
while (dr.Read())
{
game = new BO.Game();
game.PrizeID = Convert.ToInt32(dr["PrizeID"]);
game.Name = dr["LocationName"].ToString();
game.ImageURL = "DisplayImages/" + dr["DisplayImage"].ToString();
game.Country = dr["CountryName"].ToString();
listGame.Add(game);
}
dr.Close();
dr.Dispose();
}
catch (Exception ex)
{
throw ex;
}
finally
{
con.Close();
con.Dispose();
}
return listGame;
}
例如我想在列表中显示第一项和第二项的图像 url
我可以做这样的事情吗?
<div id="mcont2-sub1" class="mcont-subs mcont-subs-2">
<div class="full-detais-cover2">
<a class="opac-link" href="game_details.html" ><img class="hover-img-main" src="<%=listGames[0].ImageURL;%>" /></a>
<a class="opac-link" href="game_details.html" ><div id="cover-pager2"><img src="Images/lens-full-details.png" /></div></a>
<div class="ticket-quantity2">
<span>Choose ticket quantity</span><span>Tickets $5.00</span>
<ul class="quantity-paging">
<li><a> 1 </a></li>
<li><a> 2 </a></li>
<li><a> 3 </a></li>
<li><a> 4 </a></li>
<li><a> 5 </a></li>
<li><a>10</a></li>
<li><a>15</a></li>
<li><a>20</a></li>
</ul>
</div>
</div>
<div class="descrip-place" id="id-descrip-place">
<p class="description">Marbella Beach Club Marriott</p>
<p class="place">Spain</p>
</div>
<a href="game_details.html" class="arrow-light-blue" ><img src="Images/arrow-light-blue.png" /></a>
</div>
<div id="mcont2-sub2" class="mcont-subs mcont-subs-2">
<a href="game_details.html" ><img src="<%=listGames[1].ImageURL;%>" /></a>
<div class="descrip-place" id="Div1">
<p class="description">Waiohai Beach Club Marriott</p>
<p class="place">Hawaii</p>
</div>
<a href="game_details.html" class="arrow-light-blue" ><img src="Images/arrow-light-blue.png" /></a>
</div>