Label中实现显示换行的问题。
用Label控件实现近期公告的显示。想在每一条公告显示的最后输出一个换行。求教。代码如下:publicpartialclassAdmin:System.Web.UI.Pa...
用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的最后输出一个换行,代码上要加些什么呢?
本人菜鸟,谢谢指点! 展开
代码如下:
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的最后输出一个换行,代码上要加些什么呢?
本人菜鸟,谢谢指点! 展开
2个回答
展开全部
label是根据你的字符串而显示的,我觉得向label中填充的是html代码段,问题就解决了,如果只填写你的内容的话,你应该手动添加换行符来解决
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询