|
|
|
(ASP.NET C#) Controls.Add DropDownList แล้วเว้นบรรทัดไม่ได้ ..............!!? |
|
|
|
|
|
|
|
ลองใส่ br ซะ 2 ตัวครับ หรือไม่ลอง view source ในหน้า IE ครับ ว่ามีการ Gen html tag <br> ขึ้นมาหรือไม่
Go to : (C#) ASP.NET Controls.Add
|
|
|
|
|
Date :
2011-03-14 16:59:32 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เว้นบรรทัด panel6 อันสุดท้ายอันเดียวครับ
Code (C#)
int i;
Label lblNum,lblBr;
TextBox txtQuan, txtUnit, txtAmount;
DropDownList DDLDetailList;
for (i = 1; i <= Convert.ToInt32(this.ddlNum.SelectedItem.Value); i++)
{
lblBr = new Label();
lblBr.Text = "<br /><br /><br />";
txtQuan = new TextBox();
txtQuan.ID = "Quan" + i;
txtQuan.Width = 20;
DDLDetailList = new DropDownList();
DDLDetailList.ID = "Detail" + i;
lblNum = new Label();
lblNum.Text = Convert.ToString(i);
txtUnit = new TextBox();
txtUnit.ID = "Unit" + i;
txtAmount = new TextBox();
txtAmount.ID = "Amoumt" + i;
this.Panel1.Controls.Add(lblNum);
this.Panel1.Controls.Add(lblBr);
this.Panel2.Controls.Add(lblBr);
this.Panel2.Controls.Add(DDLDetailList);
this.Panel3.Controls.Add(txtQuan);
this.Panel3.Controls.Add(lblBr);
this.Panel5.Controls.Add(txtUnit);
this.Panel5.Controls.Add(lblBr);
this.Panel6.Controls.Add(txtAmount);
this.Panel6.Controls.Add(lblBr);
เป็นเพราะผมใส่เยอะรึป่าว
|
|
|
|
|
Date :
2011-03-14 17:28:43 |
By :
hamzter |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
น่าจะต้อง new ใหม่น่ะครับ
|
|
|
|
|
Date :
2011-03-14 17:31:23 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โอเคครับ new ทีละอันใช้ได้ ขอบคุณครับ
|
|
|
|
|
Date :
2011-03-14 17:36:09 |
By :
hamzter |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|