Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx thread: Two Questions


Message #1 by chris.wagner@t... on Wed, 12 Feb 2003 21:03:04
Does anyone know how to refersh the web page while a process is running?
Sorta like using do events in VB 5 and 6.

Has anyone had any luck get masked edit box working in aspx.Net?
Message #2 by Johnny <mailjohnny101@y...> on Wed, 12 Feb 2003 15:57:21 -0800 (PST)
you could issue a 

Response.Flush()

command that should force any pending buffered data down to the client - acting like
a "DoEvents".

as for the masked edit box, i haven't tried, sorry.

john


------------------------
John Pirkey
MCSD (VB6)
http://www.stlvbug.org

--- chris.wagner@t... wrote:
> Does anyone know how to refersh the web page while a process is running?
> Sorta like using do events in VB 5 and 6.
> 
> Has anyone had any luck get masked edit box working in aspx.Net?


__________________________________________________
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com
Message #3 by "Paul Riley" <rilez@t...> on Thu, 13 Feb 2003 00:19:56 -0000
Response.flush will do what you're after and make all buffered content
appear on the client browser. As for masked edit boxes use a textbox and
set enabled to false that should do it :)

-----Original Message-----
From: Johnny [mailto:mailjohnny101@y...] 
Sent: 12 February 2003 23:57
To: ASP.NET
Subject: [aspx] Re: Two Questions



you could issue a 

Response.Flush()

command that should force any pending buffered data down to the client -
acting like a "DoEvents".

as for the masked edit box, i haven't tried, sorry.

john


------------------------
John Pirkey
MCSD (VB6)
http://www.stlvbug.org

--- chris.wagner@t... wrote:
> Does anyone know how to refersh the web page while a process is 
> running? Sorta like using do events in VB 5 and 6.
> 
> Has anyone had any luck get masked edit box working in aspx.Net?


__________________________________________________
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com



  Return to Index