开发者

Display url in text box

I have a textbox as follows:

<asp:TextBox runat="server" ID="txtOtherApps" Height="400" Width="400" 
 Tex开发者_C百科tMode="MultiLine" ontextchanged="txtOtherApps_TextChanged" ></asp:TextBox>

How to display link in this textbox?


The TextBox allows you to display text which the user can edit. It does not allow you to display anything but plain text. To display a URL in the TextBox, simply set its Text property:

txtOtherApps.Text = "http://www.example.com/";

It wont, however, be a "link". Clicking the URL will cause a text cursor to be placed, allowing for the user to edit the URL.


It is possible if you use JavaScript Use JavaScript on your text element - such that:

<input type="text" name="t1" id="t1" value="http://www.google.com" onmouseover="this.style.cursor='pointer' ;" onClick="window.open(this.value);"/>

Only Java script can do what you are asking for.


You won't be able to click on the link, but you can just set the Text property of the TextBox to the URL.


ASP.NET will render TextBoxes as textareas (in your case, because it's multiline) or inputs. These are standard HTML fragments which are just plain text containers. You can style them, but you can't really linkify the contents of them.

If you really just want to put the text of a link into a box, do this:

// either from the server:
txtOtherApps.Text = YourLinkString;

// or from the client:
<script>
  document.getElementById('<%=txtOtherApps.ClientID%>').value = YourJsLinkValue;
</script>

If you want something to happen with the user clicks on the text area, you can add an onclick handler to it...but this would be weird.


You will need a RichTextBox. The .NET one is not available for web applications, but there are a few third party solutions available.

http://www.richtextbox.com/ is one of them, you will have to see for yourself if there is any available that suits your needs better.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜