﻿<?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 - WebDesktop - WebFlyPostBackManager - Can't get simple page working</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebFlyPostBackManager---Cant-get-simple-page-working/</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>WebFlyPostBackManager - Can't get simple page working</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebFlyPostBackManager---Cant-get-simple-page-working/</link><pubDate>Wed, 30 Mar 2011 00:08:17 GMT</pubDate><dc:creator>lili</dc:creator><description>&lt;p&gt;Hi Jim,&lt;/p&gt;
&lt;p&gt;You need to add some code in your button_click event. Please see the sample that I attach for you.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Hope it helps.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Lili Khiung&lt;/p&gt;</description></item><item><title>WebFlyPostBackManager - Can't get simple page working</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/WebFlyPostBackManager---Cant-get-simple-page-working/</link><pubDate>Tue, 29 Mar 2011 10:17:28 GMT</pubDate><dc:creator>jdresser@idexcorp.com</dc:creator><description>&lt;p&gt;Ok, I'm just starting to use Intersoft's controls, so I'm sure that this is my error, but I can't figure it out. All I want to do is replace Microsoft's Update Panel with your WebFlypostbackManager. I've looked at the samples and I've read the forum posts, but I still can't get this simple sample working. &lt;span role="presentation" class="objectBox objectBox-errorMessage hasBreakSwitch "&gt;&lt;span class="errorMessage " /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span role="presentation" class="objectBox objectBox-errorMessage hasBreakSwitch "&gt;&lt;span class="errorMessage "&gt;What am I doing wrong?  Why won't a &amp;lt;asp:Textbox&amp;gt; update  ??&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span role="presentation" class="objectBox objectBox-errorMessage hasBreakSwitch "&gt;&lt;span class="errorMessage "&gt;Thanks,&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span role="presentation" class="objectBox objectBox-errorMessage hasBreakSwitch "&gt;&lt;span class="errorMessage "&gt;Jim - Using latest version of your controls, Windows 7, and Visual Studio 2010&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;span role="presentation" class="objectBox objectBox-errorMessage hasBreakSwitch "&gt;&lt;span class="errorMessage " /&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestFlyBack.aspx.cs" Inherits="MasterController.Filter.TestFlyBack" %&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;%@ Register Assembly="ISNet.WebUI.WebDesktop" Namespace="ISNet.WebUI.WebDesktop" TagPrefix="ISWebDesktop" %&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&amp;gt;&lt;br /&gt;&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;&lt;br /&gt;&amp;lt;head runat="server"&amp;gt;&lt;br /&gt;  &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;  &amp;lt;form id="form1" runat="server"&amp;gt;&lt;br /&gt;  &amp;lt;div&amp;gt;&lt;br /&gt;    &amp;lt;ISWebDesktop:WebFlyPostBackManager ID="uiService" runat="server" BlockPageUIOnBusy="True" EnableUIMode="True" ServiceUrl="TestFlyBack.aspx"&amp;gt;&lt;br /&gt;      &amp;lt;FlyPostBackSettings PostControlState="true" PostHiddenFields="true" PostInputControls="True" PostViewState="True" /&amp;gt;&lt;br /&gt;    &amp;lt;/ISWebDesktop:WebFlyPostBackManager&amp;gt;&lt;br /&gt;&lt;br /&gt;    &amp;lt;asp:Button ID="Button_PartLookup" runat="server" Text="Lookup  --&amp;gt;" OnClick="Button_PartLookup_Click" /&amp;gt;&lt;br /&gt;    &amp;lt;br /&amp;gt;&lt;br /&gt;    &amp;lt;br /&amp;gt;&lt;br /&gt;    Time =&lt;br /&gt;    &amp;lt;asp:TextBox ID="TextBox_Time" runat="server" Width="350"&amp;gt;&amp;lt;/asp:TextBox&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;  &amp;lt;/div&amp;gt;&lt;br /&gt;  &amp;lt;/form&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/pre&gt;&lt;pre&gt;using System;&lt;br /&gt;using System.Collections.Generic;&lt;br /&gt;using System.Linq;&lt;br /&gt;using System.Web;&lt;br /&gt;using System.Web.UI;&lt;br /&gt;using System.Web.UI.WebControls;&lt;br /&gt;using ISNet.WebUI.WebDesktop;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;namespace MasterController.Filter&lt;br /&gt;{&lt;br /&gt;  public partial class TestFlyBack : System.Web.UI.Page&lt;br /&gt;  {&lt;br /&gt;&lt;br /&gt;    WebFlyPostBackListener listener = null;&lt;br /&gt;&lt;br /&gt;    protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;    {&lt;br /&gt;      // this is the only code needed for the automatic callback feature&lt;br /&gt;      listener = new WebFlyPostBackListener(this);&lt;br /&gt;&lt;br /&gt;      if (!IsPostBack)  //set a default value when page loads&lt;br /&gt;      {&lt;br /&gt;        TextBox_Time.Text = "Initial Time=" &amp;#43; System.DateTime.Now.ToString();&lt;br /&gt;      }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    protected void Button_PartLookup_Click(object sender, EventArgs e)&lt;br /&gt;    {&lt;br /&gt;      TextBox_Time.Text = "Updated Time=" &amp;#43; System.DateTime.Now.ToString();&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  }&lt;br /&gt;}&lt;/pre&gt;&lt;br /&gt;
</description></item></channel></rss>