Plz建议我如何绑定asp.net c#中的内容。内容是动态的,将环绕图像。以及我如何显示
答案 0 :(得分:0)
在标记中放置图像并使用Literal控件
<asp:Image ID="Image1" runat="server" ImageUrl="Images/Sample.png" />
<asp:Literal ID="PlaceHolderLiteral" runat="server"></asp:Literal>
在您的代码中
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
String DynamicText = "<p>Your dynamic text to be rendered.</p><p>Your next dynamic text to be rendered.</p>";
DynamicText += "<p>Your additional dynamic text to be rendered.</p>";
PlaceHolderLiteral.Text = DynamicText;
}
}