I have a requirement where i need to make bold or highlight part of text (NOT Complete text) in textbox in web page . text value is handled in server side.
The TextBox cannot do that. If you are just displaying data, I would suggest use a Label control. If you take user input, then you might have to use a Rich TextBox (not a standard control).
I have a requirement where i need to make bold or highlight part of text (NOT Complete text) in textbox in web page . text value is handled in server side.
Normally this cannot be achieved for textbox , may be through javascript you can do some trice but best you have to some editor control Check this..
TannyGuy
0 Points
1 Post
Make Part of Text Bold or Highlight in Textbox
Jun 11, 2009 06:51 PM|LINK
I have a requirement where i need to make bold or highlight part of text (NOT Complete text) in textbox in web page . text value is handled in server side.
In asp .net 2.0, is it possible?.
Can someone please help me on this regard?
bullpit
All-Star
21838 Points
4822 Posts
Re: Make Part of Text Bold or Highlight in Textbox
Jun 11, 2009 07:49 PM|LINK
The TextBox cannot do that. If you are just displaying data, I would suggest use a Label control. If you take user input, then you might have to use a Rich TextBox (not a standard control).
Max
Let Me Google That For You!
Ram Reddy Me...
Star
9604 Points
1314 Posts
Re: Make Part of Text Bold or Highlight in Textbox
Jun 12, 2009 04:03 AM|LINK
Try this...
<
asp:TextBox ID="TextBox6" runat="server" onkeyup="javascript:up(this.value);"></asp:TextBox><script type="text/javascript"> function up(va) { if()//your condition here { va = va.toUpperCase(); } } </script> </script>Abhiram Reddy Mekha
venkatu2005
All-Star
32487 Points
6742 Posts
Re: Make Part of Text Bold or Highlight in Textbox
Jun 12, 2009 04:11 AM|LINK
Normally this cannot be achieved for textbox , may be through javascript you can do some trice but best you have to some editor control Check this..
http://venkat-dotnetsamples.blogspot.com/search/label/Rich%20Text%20Editor
Thanks.
bullpit
All-Star
21838 Points
4822 Posts
Re: Make Part of Text Bold or Highlight in Textbox
Jun 12, 2009 12:08 PM|LINK
I think you misunderstood the question...
Max
Let Me Google That For You!