请建议我如何在 asp.net c# 中绑定内容。内容是动态的,将环绕图像。还有我如何显示
问问题
876 次
1 回答
0
在您的标记中放置您的图像并使用文字控件
<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;
}
}
于 2012-10-30T16:41:23.043 回答