2012-10-30 124 views
1

Plz建議我如何綁定在asp.net c#中的內容。內容是動態的,這將環繞image.And還我怎麼能顯示顯示動態內容環繞圖像

+0

請提供代碼示例,並更具體地說明您正在使用的編程問題 – Curt

回答

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; 
     } 
    } 
+0

感謝AntLaC先生的工作原理。我的內容(動態)很大,所以我想在適當的空間和新行中顯示一段。如何實現。 – prityyy

+0

我編輯了我的答案來演示。你可以在你的字符串中使用標準的HTML標記。您也可以從數據源構建您的字符串。所以,你並不侷限於此。 – AntLaC