|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
How to send output to browser and stop execution of events occuring after loadwhen i try to do a response.flush and .end, the screen ends up blank. I want
all page processing to quit when a check in the pageload event fails. Since control events occur after load, how do i keep those from firing while still displaying the rest of the html on the page? To accomplish this, override RenderChildren() in the Page, and only
call base.RenderChildren() when you want the other controls to load (when your check does not fail). Also, if the controls you mention are web user controls (ascx), you can override Render() and only call base.Render() in a similar manner. Hi TS,
Regarding on the problem you mentioned, it is limited by the ASP.NET page's serverside processing model, the page object will pass a series of events to complete its serverside processing, and the rendering is the last step. though we can provide a funciton to manually call class's Render method , but that's not recommended and is not guaranteed to work since there may have some status not set correctly before the normal Render events happen.... So I think the recommended means is as below: Define a property or field in your page class to mark the flag of success or failure, we can set that flag in page's load or init function ..... For our postback event handlers, we encapsulate the event handler's code into a separate function and call that function only when the flag match the expected value ....... This can prevent us from violating the ASP.NET page's natural model... Regards, Steven Cheng Microsoft Online Support Get Secure! www.microsoft.com/security (This posting is provided "AS IS", with no warranties, and confers no rights.) -------------------- | From: "KJ" <n_o_s_p_a***@mail.com> occuring after load| Newsgroups: microsoft.public.dotnet.framework.aspnet | Subject: Re: How to send output to browser and stop execution of events | Date: 20 Jan 2006 11:21:47 -0800 19:22:09 GMT)| Organization: http://groups.google.com | Lines: 7 | Message-ID: <1137784907.166025.133***@f14g2000cwb.googlegroups.com> | References: <e5TgRLfHGHA.3***@TK2MSFTNGP15.phx.gbl> | NNTP-Posting-Host: 69.32.176.2 | Mime-Version: 1.0 | Content-Type: text/plain; charset="iso-8859-1" | X-Trace: posting.google.com 1137784929 25698 127.0.0.1 (20 Jan 2006 | X-Complaints-To: groups-ab***@google.com rv:1.7.8) Gecko/20050511 Firefox/1.0.4,gzip(gfe),gzip(gfe)| NNTP-Posting-Date: Fri, 20 Jan 2006 19:22:09 +0000 (UTC) | In-Reply-To: <e5TgRLfHGHA.3***@TK2MSFTNGP15.phx.gbl> | User-Agent: G2/0.2 | X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; | Complaints-To: groups-ab***@google.com TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed00.sul.t-online.de!t-onli| Injection-Info: f14g2000cwb.googlegroups.com; posting-host=69.32.176.2; | posting-account=-EvJ3wsAAABogc-QthV-9_6Q4JSAQJuo | Path: ne.de!border2.nntp.dca.giganews.com!border1.nntp.dca.giganews.com!nntp.gigan ews.com!postnews.google.com!f14g2000cwb.googlegroups.com!not-for-mail | Xref: TK2MSFTNGXA02.phx.gbl microsoft.public.dotnet.framework.aspnet:372505Show quote | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet | | To accomplish this, override RenderChildren() in the Page, and only | call base.RenderChildren() when you want the other controls to load | (when your check does not fail). | | Also, if the controls you mention are web user controls (ascx), you can | override Render() and only call base.Render() in a similar manner. | | |
|||||||||||||||||||||||