用Label控件实现近期公告的显示。想在每一条公告显示的最后输出一个换行。求教。
代码如下:
public partial class Admin : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\ASPNETDB.MDF;Integrated Security=True;User Instance=True");
SqlCommand cmd = new SqlCommand("SELECt noticeTitle, noticeDate, noticeSubject, noticeAuthor FROM Notice", con);
using (con)
{
con.Open();
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
Label temp = new Label();
temp.Text = (string)reader["noticeTitle"] + reader["noticeDate"].ToString() + (string)reader["noticeSubject"] + (string)reader["noticeAuthor"];
notice.Controls.Add(temp);
}
}
}
}
这样输出的结果是读取的所有公告连续显示在页面上。
现在想把每一条公告用换行分开,也就是在temp.text的最后输出一个换行,代码上要加些什么呢?
本人菜鸟,谢谢指点!
Label中实现显示换行的问题。
答案:2 悬赏:30 手机版
解决时间 2021-02-20 11:41
- 提问者网友:感性作祟
- 2021-02-19 22:23
最佳答案
- 五星知识达人网友:一叶十三刺
- 2021-02-19 22:53
temp.Text+="
";
";
全部回答
- 1楼网友:夜余生
- 2021-02-19 23:19
label1.caption = "aaa" & vbcrlf & "bbb"
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯