|
| Additional Controls |
 |
Fri, 28 Mar 2008 14:31:25 +000 |
I'm interested in adding a linklabel control but it's not listed in the Standard
Toolbox. Is it possible to download additional controls into VWD Express?
|
| Post Reply
|
| Re: Additional Controls |
 |
Fri, 28 Mar 2008 15:54:28 +000 |
a linklable? There is a LinkButton which works like a clickable button but looks
like a link. There is also a HyperLink control, which in the end, generates a
pretty standard <A HREF ..> link.
If you just want to write HTML to a control, you can use the Literal control and
put your HTML into the .Text property.
|
| Post Reply
|
| Re: Additional Controls |
 |
Fri, 28 Mar 2008 22:21:57 +000 |
Thanks, pixelsyndicate.
I have database records containing an image URL. I want to retrieve this and
display it on the page as a hyperlink. At the moment, I have the following:
Online photos at:
<asp:label ID="Label4" runat="server"
Text='<%# Eval("ImageURL") %>'></asp:label>
I want the text to appear as a hyperlink so that I can apply link, visited,
hover and active styles to it.
|
| Post Reply
|
| Re: Additional Controls |
 |
Sat, 29 Mar 2008 02:27:04 +000 |
Yah-mon... You be wanting a HyperLink control mon... :)
<"HyperLink1" Target=_blank
CssClass="myStylizedURL"NavigateUrl="http://www.pixelsyndicate.co
m" Text="<%# Eval("ImageURL")
%>"runat="server">
|
| Post Reply
|
|
|
|
|
|
|
|
|
|