﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebFlyPostBackManager</title><link>http://www.intersoftsolutions.com/Community/Tags/WebFlyPostBackManager/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Update a webpane in a webpane group using flypostbackmanager</title><link>http://www.intersoftsolutions.com/Community/Tags/WebFlyPostBackManager/</link><pubDate>Wed, 19 Jan 2011 03:54:46 GMT</pubDate><dc:creator>interfung</dc:creator><category>WebFlyPostBackManager</category><category>FlypostBack</category><category>Update</category><category>webpane</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am trying to update a webpane's content URL using flypostback, if I use "rendercontrol" for the WebPaneManager, All webpanes will be refreshed, is there any way to refresh only one Pane in a WebPaneManager? Attached my page for your refrence.&lt;/p&gt;
&lt;p&gt;ASPX Page:&lt;/p&gt;&lt;pre&gt;&amp;lt;%@ Page Language="vb" AutoEventWireup="false" CodeBehind="TestWebPane.aspx.vb" Inherits="InterTest.TestWebPane" %&amp;gt;

&amp;lt;%@ Register Assembly="ISNet.WebUI.WebDesktop" Namespace="ISNet.WebUI.WebDesktop"
    TagPrefix="ISWebDesktop" %&amp;gt;

&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&amp;gt;

&amp;lt;html&amp;gt;
&amp;lt;head runat="server"&amp;gt;
    &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;
    &amp;lt;script type='text/javascript'&amp;gt;
        function setURL(){
            var fpb = ISGetObject("WebFlyPostBackManager1");
            fpb.ChangePaneUrl("TestLoading.aspx");
        }
    &amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;form id="form1" runat="server"&amp;gt;
    &amp;lt;div&amp;gt;
        &amp;lt;ISWebDesktop:WebFlyPostBackManager ID="WebFlyPostBackManager1" runat="server" ServiceUrl="TestWebPane.aspx"&amp;gt;
        &amp;lt;/ISWebDesktop:WebFlyPostBackManager&amp;gt;
        &amp;lt;ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" Height="100%" Width="100%"&amp;gt;
&amp;lt;FrameStyle BackColor="#E0E0E0" BorderColor="#404040" BorderStyle="Solid" BorderWidth="1px" ForeColor="White"&amp;gt;
&amp;lt;Padding Top="4px" Left="4px" Right="4px" Bottom="4px"&amp;gt;&amp;lt;/Padding&amp;gt;
&amp;lt;/FrameStyle&amp;gt;

            &amp;lt;RootGroupPane Name="RootGroup"&amp;gt;
                &amp;lt;Panes&amp;gt;
                    &amp;lt;ISWebDesktop:WebPane Name="Pane0" Text="Pane 0"&amp;gt;
                        &amp;lt;ContentTemplate&amp;gt;
                            &amp;lt;label id="lbl" onclick="setURL()"&amp;gt;Set the URL to Page&amp;lt;/label&amp;gt;
                        &amp;lt;/ContentTemplate&amp;gt;
                    &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                    &amp;lt;ISWebDesktop:WebPane Name="Pane1" Text="Pane 1" ContentMode="UseIFrame"&amp;gt;                        
                    &amp;lt;/ISWebDesktop:WebPane&amp;gt;
                &amp;lt;/Panes&amp;gt;
            &amp;lt;/RootGroupPane&amp;gt;

&amp;lt;PaneSettings&amp;gt;
&amp;lt;ContainerStyle Overflow="Auto" OverflowY="Auto" OverflowX="Auto" BackColor="White" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px" Font-Names="Tahoma" Font-Size="8pt" ForeColor="Black"&amp;gt;
&amp;lt;Padding Top="4px" Left="4px" Right="4px" Bottom="4px"&amp;gt;&amp;lt;/Padding&amp;gt;
&amp;lt;/ContainerStyle&amp;gt;

&amp;lt;HeaderMainStyle GradientType="Vertical" BackColor2="LightGray" BackColor="DimGray" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px" Font-Bold="True" Font-Names="Arial" Font-Size="11pt" ForeColor="White"&amp;gt;
&amp;lt;Padding Top="4px" Left="4px" Right="4px" Bottom="4px"&amp;gt;&amp;lt;/Padding&amp;gt;
&amp;lt;/HeaderMainStyle&amp;gt;

&amp;lt;HeaderSubStyle GradientType="Vertical" BackColor2="White" BackColor="#E0E0E0" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1px" Font-Names="Tahoma" Font-Size="8pt"&amp;gt;
&amp;lt;Padding Top="4px" Left="4px" Right="4px" Bottom="4px"&amp;gt;&amp;lt;/Padding&amp;gt;
&amp;lt;/HeaderSubStyle&amp;gt;

&amp;lt;InfoTextStyle Font-Names="Tahoma" Font-Size="8pt" ForeColor="White"&amp;gt;&amp;lt;/InfoTextStyle&amp;gt;
&amp;lt;/PaneSettings&amp;gt;

&amp;lt;SplitterStyle&amp;gt;
&amp;lt;Normal BackColor="#E0E0E0"&amp;gt;&amp;lt;/Normal&amp;gt;

&amp;lt;Active BaseStyle="Normal" BackColor="Black"&amp;gt;&amp;lt;/Active&amp;gt;
&amp;lt;/SplitterStyle&amp;gt;
        &amp;lt;/ISWebDesktop:WebPaneManager&amp;gt;
    &amp;lt;/div&amp;gt;
    &amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;
&lt;p&gt;VB Code:&lt;/p&gt;&lt;pre&gt;Imports ISNet.WebUI.WebDesktop
Public Class TestWebPane
    Inherits System.Web.UI.Page

    Private m_Listener As WebFlyPostBackListener
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        m_Listener = New WebFlyPostBackListener(Me)
    End Sub

    &amp;lt;WebFlyPostBackMethod()&amp;gt; _
    Public Sub ChangePaneUrl(ByVal strURL As String)
        Dim pane1 As WebPane = WebPaneManager1.GetAllPanes.GetNamedItem("Pane1")
        pane1.ContentURL = strURL
    End Sub

End Class&lt;/pre&gt;
&lt;p&gt;Thanks and Regards,&lt;/p&gt;
&lt;p&gt;Fung&lt;/p&gt;</description></item><item><title>WebFlyPostBackManager</title><link>http://www.intersoftsolutions.com/Community/Tags/WebFlyPostBackManager/</link><pubDate>Mon, 07 Dec 2009 07:48:16 GMT</pubDate><dc:creator>Motser</dc:creator><category>WebFlyPostBackManager</category><category>SSL</category><category>Access Denied</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;In our Web abpplication we are using the WebFlyPostBackManager. This works fine when used with http but we now need the site run with SSL. We keep getting access denied javascript errors when the WebFlyPostBackManager is used. The Access denied error is on the /ISRes.axd?F/ISCore.js/305000604 file. Any help would be much appreciated.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Dermot&lt;/p&gt;</description></item><item><title>WebFlyPostBackManager - Updating WebInput.Text</title><link>http://www.intersoftsolutions.com/Community/Tags/WebFlyPostBackManager/</link><pubDate>Sat, 21 Nov 2009 12:15:53 GMT</pubDate><dc:creator>alex@millhorn.com</dc:creator><category>WebInput</category><category>WebFlyPostBackManager</category><category>internet explorer</category><description>&lt;pre&gt;using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using ISNet.WebUI;
using ISNet.WebUI.WebDesktop;

namespace MDSPortal.Web.Partner
{
    public partial class FlyDemo : System.Web.UI.Page
    {
        WebFlyPostBackListener listener = null;

        protected void Page_Load(object sender, EventArgs e)
        {
            listener = new WebFlyPostBackListener(this);
        }


        [WebFlyPostBackMethod()]
        public void Demo2()
        {
            ListBox1.Items.Add(new ListItem("Success!", "0"));
            WebInput1.Text = "Success!";
            WebFlyPostBackManager1.ClientAction.UpdateViewState();
            //WebFlyPostBackManager1.ClientAction.RenderControl(ListBox1);
            WebFlyPostBackManager1.ClientAction.RenderControl(WebInput1);
        }
    }
}
&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;As always, thank you in advance.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item><item><title>Webflypostbackmanager causing full postback</title><link>http://www.intersoftsolutions.com/Community/Tags/WebFlyPostBackManager/</link><pubDate>Thu, 27 Aug 2009 02:41:32 GMT</pubDate><dc:creator>vinsdeon</dc:creator><category>WebFlyPostBackManager</category><description>&lt;p&gt;&lt;span style=""&gt;&amp;nbsp;Hi&lt;/span&gt;&lt;span style="color: rgb(31, 73, 125);" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;&amp;nbsp;&lt;/span&gt;   &lt;span style="color: rgb(31, 73, 125);"&gt;About webflypostback: I have tried using the samples and tutorials and played around doing some modifications. However when i applied webflypostbackmanager in my project, it is not working as it should be. The following is the design code of wfpm, if it would help.&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt; &amp;lt;ISWebDesktop:WebFlyPostBackManager ID="wfpmBlocks" runat="server" EnableUIMode="true" UpdateMode="AllControls"&amp;gt;&lt;br /&gt; &amp;lt;FlyPostBackSettings PostControlState="True" PostHiddenFields="True" PostInputControls="True"&lt;br /&gt;      PostViewState="True"&amp;gt;&lt;br /&gt;&amp;lt;/FlyPostBackSettings&amp;gt;&lt;/pre&gt;
&lt;p&gt;However except one control all controls are causing fullpostback. And moreover only a partialupdate is caused. I will explain. My scenario is as follows. I have got an outer asp.net panel, and inside that an html table is located. For this table i have got two rows.On the first row i ve got a datepicker. On the second row, i have got another table with 9 rows and 8 td each. The design as follows. Full design is out of scope, hence am omitting 7 repeating rows.&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;table cellpadding="0" cellspacing="0" border="0" style="height: 100%; width: 100%;"&amp;gt;&lt;br /&gt;                        &amp;lt;tr&amp;gt;&lt;br /&gt;                            &amp;lt;td style="height: 1px;" colspan="2"&amp;gt;&lt;br /&gt;                                &amp;lt;table id="Tab1" runat="server" class="patient" width="100%"&amp;gt;&lt;br /&gt;                                    &amp;lt;tr&amp;gt;&lt;br /&gt;                                        &amp;lt;td class="calendar" style="white-space: nowrap; vertical-align: middle;"&amp;gt; The datepicker comes here&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                    &amp;lt;/tr&amp;gt;&lt;br /&gt;                                &amp;lt;/table&amp;gt;&lt;br /&gt;                            &amp;lt;/td&amp;gt;&lt;br /&gt;                        &amp;lt;/tr&amp;gt;&lt;br /&gt;                        &amp;lt;tr&amp;gt;&lt;br /&gt;                            &amp;lt;td style="width: 99%; height: 100%;"&amp;gt;&lt;br /&gt;                                &amp;lt;table border="1" id="Master1" runat="server" cellspacing="0" cellpadding="0" class="scheduleContainer"&amp;gt;&lt;br /&gt;                                    &amp;lt;tr id="mainRow" style="background-color: #D1DCEF;"&amp;gt;&lt;br /&gt;                                        &amp;lt;th style="width: 3%; height: 1px;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="lblWeek" Text="Week" runat="server" CssClass="scheduleHeader"&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;                                        &amp;lt;/th&amp;gt;&lt;br /&gt;                                        &amp;lt;th style="width: 14%;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="lblMonday" Text="Monday" runat="server" CssClass="scheduleHeader"&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;                                        &amp;lt;/th&amp;gt;&lt;br /&gt;                                        &amp;lt;th style="width: 14%;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="lblTuesday" Text="Tuesday" runat="server" CssClass="scheduleHeader"&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;                                        &amp;lt;/th&amp;gt;&lt;br /&gt;                                        &amp;lt;th style="width: 14%;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="lblWednesday" Text="Wednesday" runat="server" CssClass="scheduleHeader"&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;                                        &amp;lt;/th&amp;gt;&lt;br /&gt;                                        &amp;lt;th style="width: 14%;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="lblThursday" Text="Thursday" runat="server" CssClass="scheduleHeader"&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;                                        &amp;lt;/th&amp;gt;&lt;br /&gt;                                        &amp;lt;th style="width: 14%;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="lblFriday" Text="Friday" runat="server" CssClass="scheduleHeader"&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;                                        &amp;lt;/th&amp;gt;&lt;br /&gt;                                        &amp;lt;th style="width: 14%;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="lblSaturday" Text="Saturday" runat="server" CssClass="scheduleHeader"&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;                                        &amp;lt;/th&amp;gt;&lt;br /&gt;                                        &amp;lt;th style="width: 14%;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="lblSunday" Text="Sunday" runat="server" CssClass="scheduleHeader"&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;                                        &amp;lt;/th&amp;gt;&lt;br /&gt;                                    &amp;lt;/tr&amp;gt;&lt;br /&gt;                                    &amp;lt;tr&amp;gt;&lt;br /&gt;                                        &amp;lt;td style="height: 12.1%;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="wk1" runat="server" CssClass="scheduleLeftColumn"&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                        &amp;lt;td&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="dtc1" runat="server" Width="100%" CssClass="scheduleDate" /&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Panel CssClass="scheduleDataHolder" runat="server" ID="d1"&amp;gt;&lt;br /&gt;                                            &amp;lt;/asp:Panel&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                        &amp;lt;td&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="dtc2" runat="server" Width="100%" CssClass="scheduleDate" /&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Panel CssClass="scheduleDataHolder" runat="server" ID="d2"&amp;gt;&lt;br /&gt;                                            &amp;lt;/asp:Panel&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                        &amp;lt;td&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="dtc3" runat="server" Text="i" Width="100%" CssClass="scheduleDate" /&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Panel CssClass="scheduleDataHolder" runat="server" ID="d3"&amp;gt;&lt;br /&gt;                                            &amp;lt;/asp:Panel&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                        &amp;lt;td&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="dtc4" runat="server" Text="i" Width="100%" CssClass="scheduleDate" /&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Panel CssClass="scheduleDataHolder" runat="server" ID="d4"&amp;gt;&lt;br /&gt;                                            &amp;lt;/asp:Panel&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                        &amp;lt;td&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="dtc5" runat="server" Text="i" Width="100%" CssClass="scheduleDate" /&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Panel CssClass="scheduleDataHolder" runat="server" ID="d5"&amp;gt;&lt;br /&gt;                                            &amp;lt;/asp:Panel&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                        &amp;lt;td&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="dtc6" runat="server" Text="i" Width="100%" CssClass="scheduleDate" /&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Panel CssClass="scheduleDataHolder" runat="server" ID="d6"&amp;gt;&lt;br /&gt;                                            &amp;lt;/asp:Panel&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                        &amp;lt;td&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Label ID="dtc7" runat="server" Text="i" Width="100%" CssClass="scheduleDate" /&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:Panel CssClass="scheduleDataHolder" runat="server" ID="d7"&amp;gt;&lt;br /&gt;                                            &amp;lt;/asp:Panel&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                    &amp;lt;/tr&amp;gt;&lt;br /&gt;………………………………………………………………..Other rows will come here……………………………………………………..                                    &lt;br /&gt;                                &amp;lt;/table&amp;gt;&lt;br /&gt;                            &amp;lt;/td&amp;gt;&lt;br /&gt;                            &amp;lt;td style="width: 1px; height: 100%;"&amp;gt;&lt;br /&gt;                                &amp;lt;table class="samllBoxes2" style="width: 3%; clear: right; height: 100%; background-color: Transparent;&lt;br /&gt;                                    clear: left"&amp;gt;&lt;br /&gt;                                    &amp;lt;tr&amp;gt;&lt;br /&gt;                                        &amp;lt;td style="height: 22px;"&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                    &amp;lt;/tr&amp;gt;&lt;br /&gt;                                    &amp;lt;tr&amp;gt;&lt;br /&gt;                                        &amp;lt;td style="clear: left; width: 5%; padding-top: 0px; vertical-align: top; height: 1px;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:ImageButton ImageUrl="~/assets/schDown_32.png" ID="Img1" runat="server" /&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                    &amp;lt;/tr&amp;gt;&lt;br /&gt;                                    &amp;lt;tr&amp;gt;&lt;br /&gt;                                        &amp;lt;td style="height: 100%; padding-top: 0;"&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                    &amp;lt;/tr&amp;gt;&lt;br /&gt;                                    &amp;lt;tr&amp;gt;&lt;br /&gt;                                        &amp;lt;td style="clear: left; width: 5%; padding-top: 0; vertical-align: top; height: 1px;"&amp;gt;&lt;br /&gt;                                            &amp;lt;asp:ImageButton ID="Img2" ImageUrl="~/assets/schUp_32.png" runat="server" /&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                    &amp;lt;/tr&amp;gt;&lt;br /&gt;                                &amp;lt;/table&amp;gt;&lt;br /&gt;                            &amp;lt;/td&amp;gt;&lt;br /&gt;                            &amp;lt;asp:HiddenField ID="hdnUtility" runat="server" /&amp;gt;&lt;br /&gt;                            &amp;lt;asp:HiddenField ID="hdnStartDate" runat="server" /&amp;gt;&lt;br /&gt;                        &amp;lt;/tr&amp;gt;&lt;br /&gt;                    &amp;lt;/table&amp;gt;&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;The above is the small part of my design, which is relevant to the question.When datepicker is clicked all labels are updated without any problem, asynchronously(for eg:those with id starting with dtc). Am adding some labels dynamically to the panels with class=schedueldataholder. When asynchronous post is made these labels are never get updated or removed. However i can do it work by making clientaction.markasdirty(panelID). This is done just after updating the panels in my code. But tell me if there is any performance penalty in doing this, as each panel is put as dirty once it is iterated. Now am applying background color to td. however i cant remove the color or change it because markasdirty option is not applicable to td or to table container. So i changed the markasdirty option to be applicable to entire panel holding all these controls. Am getting error like an alert box showing error message. Now for img1 and img2 full postback is only working. Why? Am not using custom update mode. However i tried with custom update mode and added these two controls and datepicker to the list. Now all controls are causing full postback. I even used updateviewstate for the first problem. The following is the server code.&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;listener = New WebFlyPostBackListener(Me)&lt;br /&gt;wfpmBlocks.ServiceUrl = "ScheduleCalendar.aspx" &amp;amp; Request.Url.Query&lt;/pre&gt;
&lt;p&gt;Hope someone can help on this.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item><item><title>Can't set focus on a WebInput from server side</title><link>http://www.intersoftsolutions.com/Community/Tags/WebFlyPostBackManager/</link><pubDate>Wed, 26 Aug 2009 11:40:55 GMT</pubDate><dc:creator>GeorgeB</dc:creator><category>WebInput</category><category>WebDesktop</category><category>WebFlyPostBackManager</category><description>&lt;p&gt;I'm using WebFlyPostBack(fpb) but I think this also happens in AJAX. When fpb ends I invoke a client script to set the focus on a WebButton, WebCombo, WebGrid, WebInput, etc. All controls that i've tried (i havent tried all) work except the WebInput. Has anyone run into this and have a fix?&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Webflypostbackmanager with InitialiseCulture</title><link>http://www.intersoftsolutions.com/Community/Tags/WebFlyPostBackManager/</link><pubDate>Wed, 19 Aug 2009 08:33:08 GMT</pubDate><dc:creator>vinsdeon</dc:creator><category>WebGrid</category><category>WebFlyPostBackManager</category><description>&lt;p&gt;Webflypostback doesnt update webgrid, when initialiseculture is applied in a page. Design code&lt;br /&gt;&lt;/p&gt;&lt;pre&gt; &amp;lt;ISWebDesktop:WebFlyPostBackManager ID="wfpmBlocks" runat="server"&amp;gt;&lt;br /&gt;                    &amp;lt;FlyPostBackSettings PostControlState="True" PostHiddenFields="True" PostInputControls="True"&lt;br /&gt;                        PostViewState="True"&amp;gt;&lt;br /&gt;                    &amp;lt;/FlyPostBackSettings&amp;gt;&lt;br /&gt;                &amp;lt;/ISWebDesktop:WebFlyPostBackManager&amp;gt;&lt;/pre&gt;
&lt;p&gt;The vbcode applied in pageload is as follows &lt;br /&gt;&lt;/p&gt;&lt;pre&gt;listener = New WebFlyPostBackListener(Me)&lt;br /&gt;wfpmBlocks.ServiceUrl = "PatientFileGeneral.aspx" &amp;amp; Request.Url.Query&lt;/pre&gt;
&lt;p&gt;Now the code for webflypostbackmanager &lt;br /&gt;&lt;/p&gt;&lt;pre&gt; &amp;lt;WebFlyPostBackMethod()&amp;gt; Public Sub RebindBlockDet(ByVal blkId As String, ByVal extraUpdate As Integer)&lt;br /&gt;        CType(divBlkCont.FindControl(blkId), Global.ASP.global_asax.INewDataBlock).BuildData()&lt;br /&gt;        wfpmBlocks.ClientAction.UpdateViewState()&lt;br /&gt;        Dim dataBlock As Table = divBlkCont.FindControl(blkId).FindControl("tblBlock")&lt;br /&gt;        wfpmBlocks.ClientAction.RenderControl(dataBlock)&lt;br /&gt;        PatFileHeader1.RebindDet()&lt;br /&gt;        Dim patHead As Table = PatFileHeader1.FindControl("tblWarning")&lt;br /&gt;        If (extraUpdate = 1) Then&lt;br /&gt;            wfpmBlocks.ClientAction.RenderControl(patHead)&lt;br /&gt;        ElseIf (extraUpdate = 2) Then&lt;br /&gt;            For Each xBlk As String In alMainGoal&lt;br /&gt;                CType(divBlkCont.FindControl(xBlk), Global.ASP.global_asax.INewDataBlock).BuildData()&lt;br /&gt;                Dim xtraBlock As Table = divBlkCont.FindControl(xBlk).FindControl("tblBlock")&lt;br /&gt;                wfpmBlocks.ClientAction.RenderControl(xtraBlock)&lt;br /&gt;            Next&lt;br /&gt;        End If&lt;br /&gt;    End Sub&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;My page contains several webgrids created dynamically with different functionalities. in the edit mode of the page the data entered by the user is taken to either edit or delete or update the the rows in the corresponding webgrid. This functionality works fine if am not using initialiseculture event in my page. With the event applied, the asynchronous postback occurs, but the  &lt;WebFlyPostBackMethod()&gt; is skipped. so that am unable to get the functionality. The following is the code for initialiseculture&lt;br /&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;pre&gt;Protected Overrides Sub InitializeCulture()&lt;br /&gt;        Try&lt;br /&gt;            If Session("sesiUser") Is Nothing Then&lt;br /&gt;                Response.Redirect("logout.aspx")&lt;br /&gt;            End If&lt;br /&gt;            UICulture = Session("sesLang").ToString.Trim()&lt;br /&gt;            Thread.CurrentThread.CurrentUICulture = New CultureInfo(Session("sesLang").ToString.Trim())&lt;br /&gt;            Thread.CurrentThread.CurrentCulture = New CultureInfo(Session("sesCulture").ToString.Trim())&lt;br /&gt;            MyBase.InitializeCulture()&lt;br /&gt;        Catch ex As Exception&lt;br /&gt;            lblError.Visible = True&lt;br /&gt;            lblError.Text = GetGlobalResourceObject("SYS_MSG", "wm111").ToString&lt;br /&gt;        End Try&lt;br /&gt;    End Sub&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt; So what should be done inorder to make webflypostbackmanager to work when initialiseculture is used.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item></channel></rss>