如何在RadioButtonList中添加新行?

问题描述:

我在ASP.Net网页中使用RadiButtonList。

我的1个列表项是这样的:

< asp:ListItem> 10 * 25 *
30 * 55 * 110

此项目是c ++程序的输出。所以,它必须是这样的

10 * 25 *

30 * 55 * 110

但RadioButton停止使用


有没有办法在列表项之间插入中断?

I am using a RadiButtonList in my ASP.Net webpage.
My 1 List Item is like this:
<asp:ListItem> 10*25*
30*55*110
This Item is output of a c++ program. So, it has to be like this
10*25*
30*55*110
But RadioButton stops working with
.
Is there any way to insert break between a list item?

替换原来的换行符(可能是\r或\ n或其组合)< br />
Replace the original line breaks (likely \r or \n or a combination thereof) by <br />.