是否可以在文本框 ASP.NET 中使用多行占位符?

Is it possible to have a multiline placeholder in a textbox ASP.NET?

placeholder="(e.g. 1, (in new line)2,(in new line)3,(in new line)4, ...)"

示例:文本框将如下所示:

如何继续此占位符的下一行?

首先将文本框的TextMode设置为MultiLine:

<asp:TextBox ID="TextBox1" runat="server" TextMode="MultiLine" Rows="3"></asp:TextBox>

您可以在 Page_Load 方法中添加 placeholder 属性并使用 Environment.NewLine 或字符串文字“\r\n”添加换行符,例如:

protected void Page_Load(object sender, EventArgs e)
{
    TextBox1.Attributes.Add("placeholder", "1,"+Environment.NewLine+"2," + Environment.NewLine + "3,");
    //or using \r\n:
    TextBox1.Attributes.Add("placeholder", "1,\r\n2,\r\n3,");
}

输出为:

希望对您有所帮助..!