我从 JSON 获取图像列表并添加到如下页面:
IEnumerable jsonData = default(IEnumerable);
jsonData = GetJsonValues("http://www.viki.com/api/v2/channels.json");
foreach (MovieDetails item in jsonData)
{
Image thumbNailImage = new Image();
thumbNailImage.ImageUrl = item.Thumbnail;
//this.Master.Controls.Add(thumbNailImage);
this.Controls.Add(thumbNailImage);
}
但这是在页面底部添加图像,因为页面模板来自母版页。
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeBehind="Default.aspx.cs" Inherits="VikiWeb._Default" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
</asp:Content>
现在如何在母版页中添加图像。