creating url
-
I use a sqldatareader to bring back data but where i bring back a web address ie www.exservices.co.uk i want that to display as link in a textbox any ideas?? this.txtWebAddress.Text = reader["WebAddress"].ToString();
-
I use a sqldatareader to bring back data but where i bring back a web address ie www.exservices.co.uk i want that to display as link in a textbox any ideas?? this.txtWebAddress.Text = reader["WebAddress"].ToString();
Hi there. A TextBox will not display text as a link. You might want to include a
HyperLink
control to the right of the TextBox (or in place of it?) that is hidden or visible depending on your data. -
Hi there. A TextBox will not display text as a link. You might want to include a
HyperLink
control to the right of the TextBox (or in place of it?) that is hidden or visible depending on your data. -
why did i not think of that? simple when you know how. many thanks, I must need a cup of tea.
:cool: Actually a cup of tea sounds great right about now.