473,782 Members | 2,465 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Buffering the output of multiple controls

Hi

I have a placeholder that has multiple controls that need to be loaded and
rendered to the user based on some user selections. I have to loop through
the choices that the user makes and then load the controls. I am doing this
in the protected override void Render(HtmlText Writer writer) method.
protected override void Render(HtmlText Writer writer)
{
foreach (Selection in UsersSelection)
{
switch(Selectio n)
{
case "Selection 1":
UserControl1 uc1 = Page.LoadContro l("Control to be loaded") as UserControl1;
//Set user control properties
Panel.Control.A dd(uc1);
case "Selection 2":
UserControl1 uc2 = Page.LoadContro l("Control to be loaded") as UserControl1;
//Set user control properties
Panel.Control.A dd(uc2);
case "Selection 3":
UserControl1 uc3 = Page.LoadContro l("Control to be loaded") as UserControl1;
//Set user control properties
Panel.Control.A dd(uc3);
:
:
}
}
base.Render(wri ter);
}
But I want the page to be displayed as soon as the data from one control has
been obtained. Is there any way to do this ? I tried setting the
Response.Buffer to false and then flushing the results. But what happens is
that all the controls are looped through and then the entire data is shown on
the page at the same time which causes the page to be blank for a some time.

Thanks a lot in advance for any help.


Nov 18 '05 #1
2 1431
you will need to take over the render logic yourself, rather then calling
base.Render(). this way you can render and flush each user control.

notes:

1) if your markup is complex, the browser may not render it anyway until get
gets the whole page.
2) if site has high volume you may runout of asp.net threads with this
approach, and your users get a server busy.
-- bruce (sqlwork.com)


"ScottOnes" <Sc*******@disc ussions.microso ft.com> wrote in message
news:32******** *************** ***********@mic rosoft.com...
Hi

I have a placeholder that has multiple controls that need to be loaded and
rendered to the user based on some user selections. I have to loop through
the choices that the user makes and then load the controls. I am doing this in the protected override void Render(HtmlText Writer writer) method.
protected override void Render(HtmlText Writer writer)
{
foreach (Selection in UsersSelection)
{
switch(Selectio n)
{
case "Selection 1":
UserControl1 uc1 = Page.LoadContro l("Control to be loaded") as UserControl1; //Set user control properties
Panel.Control.A dd(uc1);
case "Selection 2":
UserControl1 uc2 = Page.LoadContro l("Control to be loaded") as UserControl1; //Set user control properties
Panel.Control.A dd(uc2);
case "Selection 3":
UserControl1 uc3 = Page.LoadContro l("Control to be loaded") as UserControl1; //Set user control properties
Panel.Control.A dd(uc3);
:
:
}
}
base.Render(wri ter);
}
But I want the page to be displayed as soon as the data from one control has been obtained. Is there any way to do this ? I tried setting the
Response.Buffer to false and then flushing the results. But what happens is that all the controls are looped through and then the entire data is shown on the page at the same time which causes the page to be blank for a some time.
Thanks a lot in advance for any help.

Nov 18 '05 #2
I had the same issue and I tried to do the render logic but it still does not
flush out the results. Borrowing from the posted code this is what I did

protected override void Render(HtmlText Writer writer)
{
foreach (Selection in UsersSelection)
{
switch(Selectio n)
{
case "Selection 1":
UserControl1 uc1 = Page.LoadContro l("Control to be loaded") as UserControl1;
//Set user control properties
Panel.Control.A dd(uc1);
case "Selection 2":
UserControl1 uc2 = Page.LoadContro l("Control to be loaded") as UserControl1;
//Set user control properties
Panel.Control.A dd(uc2);
case "Selection 3":
UserControl1 uc3 = Page.LoadContro l("Control to be loaded") as UserControl1;
//Set user control properties
Panel.Control.A dd(uc3);
:
:
}
Panel.RenderCon trol(writer);
writer.Flush();
}
}

But that also does not seem to help at all. The page remains blank till the
entire results are returned, I expected to see some incremental flushing of
the results on to the screen so that the blank page does not exist. Any
ideas ?
"bruce barker" wrote:
you will need to take over the render logic yourself, rather then calling
base.Render(). this way you can render and flush each user control.

notes:

1) if your markup is complex, the browser may not render it anyway until get
gets the whole page.
2) if site has high volume you may runout of asp.net threads with this
approach, and your users get a server busy.
-- bruce (sqlwork.com)


"ScottOnes" <Sc*******@disc ussions.microso ft.com> wrote in message
news:32******** *************** ***********@mic rosoft.com...
Hi

I have a placeholder that has multiple controls that need to be loaded and
rendered to the user based on some user selections. I have to loop through
the choices that the user makes and then load the controls. I am doing

this
in the protected override void Render(HtmlText Writer writer) method.
protected override void Render(HtmlText Writer writer)
{
foreach (Selection in UsersSelection)
{
switch(Selectio n)
{
case "Selection 1":
UserControl1 uc1 = Page.LoadContro l("Control to be loaded") as

UserControl1;
//Set user control properties
Panel.Control.A dd(uc1);
case "Selection 2":
UserControl1 uc2 = Page.LoadContro l("Control to be loaded") as

UserControl1;
//Set user control properties
Panel.Control.A dd(uc2);
case "Selection 3":
UserControl1 uc3 = Page.LoadContro l("Control to be loaded") as

UserControl1;
//Set user control properties
Panel.Control.A dd(uc3);
:
:
}
}
base.Render(wri ter);
}
But I want the page to be displayed as soon as the data from one control

has
been obtained. Is there any way to do this ? I tried setting the
Response.Buffer to false and then flushing the results. But what happens

is
that all the controls are looped through and then the entire data is shown

on
the page at the same time which causes the page to be blank for a some

time.

Thanks a lot in advance for any help.


Nov 18 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2236
by: Shaun Jackman | last post by:
I'm reading from a tcpdump pipe. I want to receive one line from the pipe as soon as its available from tcpdump. Something is buffering the pipe though, so I am receiving nothing, then multiple lines in a big batch. I thought this was the inherent buffering of next(), but it affects readline too. For example, tcpdump = os.popen( 'sudo tcpdump', 'r') both while True: print tcpdump.next(),
0
1118
by: kanones | last post by:
Hi I have a placeholder that has multiple controls that need to be loaded and rendered to the user based on some user selections. I have to loop through the choices that the user makes and then load the controls. I am doing this in the protected override void Render(HtmlTextWriter writer) method. protected override void Render(HtmlTextWriter writer) { foreach (Selection in UsersSelection) {
2
15945
by: MPowell | last post by:
Gents/Ladies, I'm doing (at least plan on ) lots of Reads and Writes across a communication channel. I'm told that for the 'receive side' it'd be prudent to implement a double buffering scheme to handle all the asnychronous inputs. Someone mentioned Herb Shutters book as frame of reference, nonetheless, could someone provide sample code or - in effect an outline of double buffering? I've perused the web but most references are to...
2
5612
by: Dan Neely | last post by:
My dialog has groupboxes with slow to redraw controls, to improve the appearance I want to doublebuffer it. While I can use SetStyle() in the Dailogs constructor the setting change doesn't get propagated to the groupbox, and since it's a protected method I can't call groupbox.SetStyle(). I've tried deriving a custom class from System.Windows.Forms.GroupBox and calling SetStyle from inside of it's constructor and from a new method. Both...
2
3041
by: Sam-Kiwi | last post by:
I've spent the last 6 months developing a pay-per-download website using ASP.NET Users purchase documents and then download them. The intention is that users are only charged for documents they successfuly download. My problem revolves around detecting a successful download, the steps I take to handle the download are as follows:
3
5950
by: ssoffline | last post by:
hi i have an app in which i can drop objects onto a form and move them, it consists of graphics (lines), i am using double buffering to avoid filckering in the parent control which is a panel,but when i add controls to this panel dyanamically, the double buffering effect is not there, i move all lines connceted to a control when the control is moved , at this time flickering occurs,also when i enable double buffering for a child control...
11
2076
by: japhy | last post by:
Is there a way to read a line (a series of characters ending in a newline) from a file (either by descriptor or stream) atomically, without buffering additional contents of the file?
15
1819
by: jools | last post by:
I'm having trouble modifying some code written by someone else. The code is very dense and obscure but does work fine. However I need to insert a block of my own and I've hit what I assume is a buffering problem.(If there's another answer I'd be grateful ...) The problem is PHP is refusing to do things in the correct sequence. I've tried all the variations of flushing I can think of without success. Can anyone suggest how I can force...
2
4959
by: Rudy Gevaert | last post by:
Hi, I have written an perl program that read from stdin: while(<STDIN>) { chomp do_it($_); } Data is fed to it via a pipe:
4
1597
by: Grant Edwards | last post by:
When I ssh in to my Windows XP box and run Python apps, output from "print" and and "sys.stdout.write()" is being buffered so that none of the output shows up until the program exits. From within my program how do I set output buffering to either line-buffered or un-buffered? -- Grant Edwards grante Yow! I'm rated PG-34!! at
0
10313
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10146
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10080
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8968
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6735
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5378
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4044
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2875
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.