dynamic text for hyperlink
<asp:HyperLink ID="HyperLink4" runat="server" NavigateUrl='<%# Container.DataItem("URL") %>' Text='dyanamic text here' ></asp:HyperLink>
information getting from database. In database its have a column URL, If URL is null display message "No UR", if it has URL display "Yes, here is URL"
do i need to write a Sub Procedure or Function in order to display those messages?
Thanks
|