error in my login page Programming Web Development by yara1 …="post" action="logink.php" > <lablel> <div align="center">User name…;/div> <p align="center"><lablel>Password: <input name ="password" type="… Display a "in progress" message from C# code behind ASP.net Programming Web Development by etm9413 … the button_click event is executed. So we never see my lablel on the screen until 10 seconds later, when all the… dynamically create textboxand raise events dynamically Programming Software Development by sekhar_ddk Hi, i am raj how to create a textbox dynamically and what ever you enter in that textbox that will apper in lablel dynamically? how raise text change event at run time? Re: Display data in separate controls (SQL) Programming Software Development by arjunsasidharan … to do is bind the data into a textbox or lablel as you wish.. if its a dropdownlist box it goes… Re: Free Disk Space Programming Software Development by Stefano Mtangoo check [URL="http://lmgtfy.com/?q=set+label+value+tkinter"]this [/URL] and specifically [URL="http://effbot.org/tkinterbook/label.htm"]this[/URL] Put final result of size to your lablel Not TkInter expert though Re: Java program can't enable setVisible Programming Software Development by hrbswat Write " lbl1.getParent().validate(); " before following statements lbl1.setVisible(true); and lablel will be visible. Re: error in my login page Programming Web Development by Ole Raptor the reason you are getting this error is because all headers must be sent before anything is displayed. moving the php code to the top of the script may take care of your problem. Re: error in my login page Programming Web Development by yara1 thank u very very much ProfessorPC :) :) it works now Re: error in my login page Programming Web Development by Ole Raptor your welcome. would you mind marking this as solved so others will know the solution is displayed. Re: Display a "in progress" message from C# code behind ASP.net Programming Web Development by anuj_sharma call a javascript before the C# code is to be executed. Re: Display a "in progress" message from C# code behind ASP.net Programming Web Development by textbox Use the built-in AJAX controls to do this. Call the thread.sleep function to make the illusion of a wait time. Re: dynamically create textboxand raise events dynamically Programming Software Development by catherine sea You can use new keyword to create a textbox dynamically. [CODE]Textbox textbox1 = new Textbox();[/CODE] And you can use TextChanged event. It'll fire whenever the content in the text box is changed. Regards,