asp.net 如何在后台写换行标签
protectedvoidPage_Load(objectsender,EventArgse){if(!IsPostBack){stringq="1";stringw="...
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string q = "1";
string w = "2";
string r = "3";
string t = "4";
string y = "5";
this.txtSelectUser.Text = q + w + r + t + y;
}
}
代码运行后,textbox输出是12345,
但我想要的是
1
2
3
4
5
this.txtSelectUser.Text = q +“<br/>”+ w + r + t + y;这样不能换行
this.txtSelectUser.Text = q +“\r\n”+ w + r + t + y;不能换行
this.txtSelectUser.Text = q +@“\r\n”+ w + r + t + y;不能换行
求教还有其他方法么 展开
{
if (!IsPostBack)
{
string q = "1";
string w = "2";
string r = "3";
string t = "4";
string y = "5";
this.txtSelectUser.Text = q + w + r + t + y;
}
}
代码运行后,textbox输出是12345,
但我想要的是
1
2
3
4
5
this.txtSelectUser.Text = q +“<br/>”+ w + r + t + y;这样不能换行
this.txtSelectUser.Text = q +“\r\n”+ w + r + t + y;不能换行
this.txtSelectUser.Text = q +@“\r\n”+ w + r + t + y;不能换行
求教还有其他方法么 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询