Ask a Question related to ASP.NET General, Design and Development.
-
Emil Kvarnhammar #1
Re: Make text boxes "forget" values
Hi Jonathan!
I believe that the IsPostBack property is what you're looking for.
You can add code to the page_load event that looks something like
this:
private void Page_Load(object sender, System.EventArgs e)
{
if(IsPostBack)
TextBox1.Text = "";
}
Good luck!
/Emil
"Jonathan Amend" <cephas_is@hotmail.com> wrote in message
news:3f15044e$1_3@aeinews....
after> Is there an easy way of making all text boxes forget their text valuesame> the form was submitted other than than redirecting the response to the> page to reload it?
>
>
Emil Kvarnhammar Guest
-
Text as paths, when below 32 point, "l" and"-" become strokes not boxes
Acrobat Distiller 7.0 using Freehand MX When text is converted to paths before distilling, straight characters such as "l" and "-" become a... -
"make Makefile.PL" returns "...up to date"; make returns "no target to make"
I'm attempting to install a perl module (AppConfig-1.56) on a FreeBSD 4.9 system. It has both perl 5.5.3 and 5.8.3 and several modules are already... -
ANN: Improve your "Contract First" Web services development experience: WsContractFirst v0.2 - forget about wsdl.exe
OK, here we go ... I am happy to announce version 0.2 of a tool - a Visual Studio .NET Add-In - called WsContractFirst. The first bits (version 0.1)... -
How to make the "search text" feature work with non "txt" file
On Fri, 27 Jun 2003 07:19:23 -0700, "Juergen" <anhorn@bktel.com> wrote: See MVP Doug Knox' comments and fix here:...



Reply With Quote

