|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Add link to Next LineI'm able to generate the links... but i would like to put each link on a line after line. this is in the default.aspx.vb Dim lnk As New HyperLink .... panel.controls.add(lnk) but the links are added on the same line and/or wordwrap to the next line. i had tried control.rendercontrol, but no such luck and if that is actually what i need to work with. Any direction and/or sample codes would help. Thanks in advance Ros Hello Ros,
Show quoteHide quote > Peeps, Try adding a break return (br) tag after each link> > I'm able to generate the links... but i would like to put each link on > a line after line. > > this is in the default.aspx.vb > > Dim lnk As New HyperLink > .... > panel.controls.add(lnk) > but the links are added on the same line and/or wordwrap to the next > line. i had tried control.rendercontrol, but no such luck and if that > is actually what i need to work with. > > Any direction and/or sample codes would help. parent.controls.Add(new WebControl(HtmlTextWriterTag.Br)) -- Jared Parsons [MSFT] jared***@online.microsoft.com All opinions are my own. All content is provided "AS IS" with no warranties, and confers no rights. thank Jared. That worked great.
Ros Show quoteHide quote "Jared Parsons [MSFT]" wrote: > Hello Ros, > > > Peeps, > > > > I'm able to generate the links... but i would like to put each link on > > a line after line. > > > > this is in the default.aspx.vb > > > > Dim lnk As New HyperLink > > .... > > panel.controls.add(lnk) > > but the links are added on the same line and/or wordwrap to the next > > line. i had tried control.rendercontrol, but no such luck and if that > > is actually what i need to work with. > > > > Any direction and/or sample codes would help. > > Try adding a break return (br) tag after each link > > parent.controls.Add(new WebControl(HtmlTextWriterTag.Br)) > > -- > Jared Parsons [MSFT] > jared***@online.microsoft.com > All opinions are my own. All content is provided "AS IS" with no warranties, > and confers no rights. > > >
Alternative to using Bitmap
Really stupid looping problem Startup speed Regex Output to Textbox Urgent! Get rowindex - datagrid navigation Difference between MyBase and Me Need to capture all keystrokes to my application Images in a Windows DataGrid Custom coordinates How open other app from within code? |
|||||||||||||||||||||||