2013-02-10 85 views
2

我想通過按鈕在FB上分享我的文章。文章和圖像來自數據庫。問題是 「如何設置鏈接和圖像在這個超鏈接?」 我想設置link,pictureRedirect_uri CodeBehind屬性。FB插件中的數據庫鏈接

<td> 
    <asp:LinkButton ID="LinkButton1" runat="server" 
    PostBackUrl="https://www.facebook.com/dialog/feed? 
    app_id=458358780877780& 
    link=http://localhost:49441/ProjectLand/detail.aspx?id=14& 
    picture=http://fbrell.com/f8.jpg& 
    name=Facebook%20Dialogs& 
    caption=Reference%20Documentation& 
    description=Using%20Dialogs%20to%20interact%20with%20users.& 
    redirect_uri=https://mighty-lowlands-6381.herokuapp.com/" Text="Share" 
    >LinkButton</asp:LinkButton> 

        </td> 
       </tr> 
      </table> 
      <hr /> 
     </div> 
     <div class="FontSmall marginTop" style="font-size: 11pt;"> 
      <asp:Panel ID="pnl1" runat="server" CssClass="pnl1"> 
       <asp:Image ID="img1" runat="server" Width="300px" Height="250px" /> 
      </asp:Panel> 
      <asp:Panel ID="pnl2" runat="server" CssClass="pnl2"> 
       <asp:Image ID="img2" runat="server" Width="680px" Height="300px" /> 
      </asp:Panel> 
      <asp:Literal ID="ltlDesc" runat="server"></asp:Literal></div> 

圖片img1img2ltlDesc從數據庫填充。

回答