How do I fill a textbox with text if it is empty? I am using VB.NET.
相关问题
- Carriage Return (ASCII chr 13) is missing from tex
- Generic Generics in Managed C++
- How to Debug/Register a Permanent WMI Event Which
- 'System.Threading.ThreadAbortException' in
- Bulk update SQL Server C#
default text handling in a text box
clear the text when the cursor is in the text box
If the text box remains empty after data change then the default text comes again
I would create a class that inherits TextBox and do two things with it:
It looks like you're describing a cue banner, which is prompt text that is displayed in an empty textbox. As of Windows XP, this functionality is natively supported by the operating system. The effect achieved doing it this way is much more elegant than setting the default text yourself in the
TextChanged
event. It looks like this:Setting this up is accomplished at the level of the Windows API by sending the textbox control an
EM_SETCUEBANNER
message. To use this from a .NET project, you will have to use P/Invoke.Fortunately, most of the work has already been done for you. This sample project is a quick and painless way to add cue banner support to an existing project. Here's another sample, with a more complete explanation of the process.
If you don't want your application to depend on an external DLL, you can add the necessary code directly to your project. The simplest way is to subclass the existing
TextBox
control, and add the code to support cue banners there. See this answer for the code you'll need. If you have trouble converting it to VB.NET, try this tool.I assume you meant to add text from the aspx page.
Even when .NET don't suggest this feature in the intellitext, I assume that it will allow you to put any attribute, even custom that you can manipulate data in it. But, it does the work. and the value attribute is sent to the browser, therefore, initiate in the text field.
For TextArea (TextMode="MultiLine"), you can put between the tags.
It is like html textarea tag behave.
Are you looking for something like this?
You will probably want to handle the
TextChanged
event and set some default text if the text box is empty when the event is fired.I don't have a VB.NET example, but the following C# should be too hard to understand:
And the event handler can be reused for several text boxes.
EDIT: Here's pretty much the same in VB.NET
Of course, you can also achieve similar behavior using native Windows functionality, but a few lines of managed code will give you pretty much all you need even if you do not want to use Win32.