G
Guest
hi guys, i am creating Hyperlink control in the codebehind and adding it to
the panel.
The problem is that they are ending up next to each other without any space
between them.
can someone recomend based on my code how i can get a space about a tab
between each hyperlinks.
here is my code:
HyperLink MyHyperLink = new HyperLink();
MyHyperLink.NavigateUrl = attachment[k].Address.ToString();
MyHyperLink.Text =attachment[k].FileName.ToString();
HyperLink space = new HyperLink();
space.Text=" ";
LHW_PanelAttachment.Controls.Add(MyHyperLink);
LHW_PanelAttachment.Controls.Add(space);
thanks
Manny
the panel.
The problem is that they are ending up next to each other without any space
between them.
can someone recomend based on my code how i can get a space about a tab
between each hyperlinks.
here is my code:
HyperLink MyHyperLink = new HyperLink();
MyHyperLink.NavigateUrl = attachment[k].Address.ToString();
MyHyperLink.Text =attachment[k].FileName.ToString();
HyperLink space = new HyperLink();
space.Text=" ";
LHW_PanelAttachment.Controls.Add(MyHyperLink);
LHW_PanelAttachment.Controls.Add(space);
thanks
Manny