Hi:
I was using Vs2005, and the next escenario is working OK, but last night I need to move into VS2008 and the escenario doesnt work.
I have in the master page a RadAjaxPanel with the contentplaceholder insidde it, so in the contentpages I have alll the logic, when I made a Postback in the content pages, it is converted into a callback, but since I move to VS2008 and framework 3.5 it doesnt work anymore. The loading image is not showing, and the postbacks are not converted.
Here it is:
MasterPage
webForm01.aspx
I was using Vs2005, and the next escenario is working OK, but last night I need to move into VS2008 and the escenario doesnt work.
I have in the master page a RadAjaxPanel with the contentplaceholder insidde it, so in the contentpages I have alll the logic, when I made a Postback in the content pages, it is converted into a callback, but since I move to VS2008 and framework 3.5 it doesnt work anymore. The loading image is not showing, and the postbacks are not converted.
Here it is:
MasterPage
| <%@ Master Language="C#" AutoEventWireup="true" CodeFile="MPageRoot03.master.cs" Inherits="master_MPageRoot03" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
| <html xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> |
| <head id="Head1" runat="server"> |
| <title>someits</title> |
| <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon" /> |
| </head> |
| <body style="background-image:url(../../img/titlebg.jpg); background-attachment:fixed"> |
| <form id="frmNet01" runat="server"> |
| <TE01:RadScriptManager ID="RadScriptManager1" runat="server"> |
| <Scripts> |
| <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> |
| <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> |
| </Scripts> |
| </TE01:RadScriptManager> |
| <TE01:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"> |
| </TE01:RadAjaxLoadingPanel> |
| <TE01:RadAjaxPanel ID="radAjaxPanel01" runat="server" LoadingPanelID="RadAjaxLoadingPanel1" > |
| <div style="width: 100%; height:20px;top:0px; left:auto;" class="div02"> |
| <table class="tbl12"> |
| <tr> |
| <td width="50%" style="text-align:left"> |
| <asp:Label ID="lblMessage" runat="server" CssClass="txt08r" Visible="false" EnableViewState="false" /> |
| </td> |
| <td width="50%" style="text-align:right"> |
| <asp:Label ID="lblApp" runat="server" style="color:#FFFFFF" /> |
| <asp:Image ID="imgApp" runat="server" ImageUrl="~/img/spacer.gif"/>  <asp:Label ID="lblAppTitle" runat="server" CssClass="txt09s" /> |
| </td> |
| </tr> |
| </table> |
| </div> |
| <div id="pnlContentMain01_01" name="pnlContentMain01_01" style="PADDING-RIGHT: 0px;PADDING-LEFT: 0px;PADDING-BOTTOM: 0px;OVERFLOW: auto;WIDTH: 100%;PADDING-TOP: 0px;moz-box-sizing: border-box;box-sizing: border-box"> |
| <center> |
| <asp:contentplaceholder id="mpContentMain01_01" runat="server" /> |
| </center> |
| </div> |
| </TE01:RadAjaxPanel> |
| </form> |
| </body> |
| </html> |
webForm01.aspx
| <%@ Page Title="" Language="C#" MasterPageFile="~/master/MPageRoot03.master" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="Default3" %> |
| <asp:Content ID="Content2" ContentPlaceHolderID="mpContentMain01_01" Runat="Server"> |
| <asp:Button ID="some" Text="asas22222" runat="server" /> |
| <asp:Literal ID="txtsome" runat="server" EnableViewState="false" /> |
| </asp:Content> |