Hi bananas. Try this:
NavigateUrl='<% # "http://www." & eval("Website")%>'>HyperLink text</asp:HyperLink>
if you want to print the web address as your link text then:
<asp:HyperLink ID="HyperLink1" runat="server" Style="position: static" NavigateUrl='<% # "http://www." & eval("Website")%>'> <asp:Label ID="WebsiteLabel" runat="server" Text='<%# Bind("Website") %>'></asp:Label></asp:HyperLink><br />
And just in case you're wondering: yes, email would work the same way:
<asp:HyperLink ID="HyperLink2" runat="server" Style="position: static" NavigateUrl='<% # "mailto:" & eval("Email")%>'> <asp:Label ID="EmailLabel" runat="server" Text='<%# Bind("Email") %>'></asp:Label></asp:HyperLink><br />
|