2013-02-23 60 views
0

我在我的masterpage中使用了RadSplitter,並使用masterpage創建了我的webform在masterpage中使用radsplitter時運行webapp會發生什麼?

但我有與此組件 一個問題,我可以利用這一點,但在我的webform運行時間contentplaceholder先後兼併了頁面的頁腳和我不能在單獨的窗口中使用它。 請幫忙。

母版

 <%@ Page Title="" Language="C#" MasterPageFile="~/Main.Master" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Automation.WebForm1" %> 
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> 
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> 
    <div style="border:5px solid black"> 
      <h3>Request an Account</h3> 
      <p>Accounts will be activated pending the approval of the Administrator.</p> 
    </div> 
</asp:Content> 

回答

0

你點的存在?只需將ContentPlaceHolder放置在所需RadPane的主頁面中,內容就會出現在那裏。 RadSplitter也允許內聯內容,請參見here

相關問題