J
JezB
I have a page that is in Flow layout mode. I'm adding a list of hyperlinks
programatically with code such as :
HyperLink h = new HyperLink();
h.Text = pDesc;
h.NavigateUrl = "placeholders0.aspx?grp="+pGrp;
Page.Controls.Add(h);
(in a loop). The problem is that these appear all on one line on my page, as
in :
Link1Link2Link3
How can I force each link to be on a new line ?
programatically with code such as :
HyperLink h = new HyperLink();
h.Text = pDesc;
h.NavigateUrl = "placeholders0.aspx?grp="+pGrp;
Page.Controls.Add(h);
(in a loop). The problem is that these appear all on one line on my page, as
in :
Link1Link2Link3
How can I force each link to be on a new line ?