これは私をイライラさせます。私はもう試した
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
txtDrugList.Focus();
}
protected void Button1_Click(object sender, EventArgs e)
{
if (txtDrugList.Text.Length > 0)
{
drugDiv.InnerHtml += txtDrugList.Text + " ";
Response.Write("\n");
}
txtDrugList.Text = "";
}
}
と
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
txtDrugList.Focus();
}
protected void Button1_Click(object sender, EventArgs e)
{
if (txtDrugList.Text.Length > 0)
{
drugDiv.InnerHtml += txtDrugList.Text + Environment.NewLine;
}
txtDrugList.Text = "";
}
}
どちらも機能しません。ボタンをクリックして改行文字をdivに追加したい。なぜこれが機能しないのですか?