|
|
|
สร้าง Textbox โดยการใช้Loop วนสรางแล้ว เมื่อกดอ่านค่าจากTextbox Textbox ที่สร้างจะหายไป ช่วยทีครับ |
|
|
|
|
|
|
|
ดู event ดีๆ สิครับ
กดปุ่มสองมันไม่ได้ทำ event ปุ่มหนึ่งแล้วมันจะสร้าง textbox มันได้อย่างไร
|
|
|
|
|
Date :
2010-03-16 08:14:28 |
By :
tungman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โทดทีครับใส่ Code ผิดครับ เนื่องจากตัดมาบางส่วนครับ แต่Code ปุ่มแรกถูกละครับ
protected void Button2_Click(object sender, EventArgs e)
{
// นำค่าจากTextboxมาใช้งาน
}
อันนี้ code ปุ่มสองครับ คืออย่างนี้นะครับ ปุ่มแรกเนี่ยเมื่อกดมันจะสร้าง Textboxตามจำนวนที่รับมา ซึ่งมันสร้างได้แล้วนะครับ แต่ปุ่มที่สองเนี่ยจะกดหลังจากสร้าง Textbox และผู้ใช้กรอกข้อมูลเสร็จ แต่เมื่อกดปุ่มสองTextbox ที่สร้างไว้มันจะหายไปครับ ถึงแม้ว่าเราจะใส่หรือไม่ใส่คำสั่งอะไรไว้ก็ตาม ผมอธิบายพอจะเข้าใจไหมครับ ช่วยดูให้อีกทีครับ ขอบคุณล่วงหน้าครับ
|
|
|
|
|
Date :
2010-03-16 16:00:33 |
By :
Darksin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องทำยังไงครับ ขอโทษที ทำไม่ได้จริงๆ ช่วยบอกตัวอย่าง Code ที่ถูกหน่อยครับ Code ที่ใช้สร้างTextbox ตามจำนวนที่เราต้องการ เช่น ถ้าต้องการสร้าง Textbox 30 อัน เป็นต้น ปล.ขอโทษที่ทำให้หงุดหงิดผมไม่รู้จริงๆคับ T-T
|
|
|
|
|
Date :
2010-03-16 21:46:47 |
By :
Darksin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TestTextBox.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestTextBox.aspx.cs" Inherits="TestTextBox" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" ControlToValidate="TextBox1" ValidationExpression="^[0-9]+" runat="server" ErrorMessage="*"></asp:RegularExpressionValidator>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="*" ControlToValidate="TextBox1"></asp:RequiredFieldValidator>
<asp:Button ID="Button1" runat="server" Text="Button" />
<br />
<asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>
<br />
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
TestTextBox.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class TestTextBox : System.Web.UI.Page
{
List<TextBox> ArrayTextBox;
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack)
{
CreateTextBox();
}
Label1.Text = String.Empty;
}
protected void CreateTextBox()
{
if (TextBox1.Text != "")
{
int count = int.Parse(TextBox1.Text);
if (count > 0)
{
ArrayTextBox = new List<TextBox>();
for (int i = 0; i < count; i++)
{
TextBox aTextBox = new TextBox();
aTextBox.ID = "aTextBox" + i.ToString();
ArrayTextBox.Add(aTextBox);
RequiredFieldValidator aRequiredFieldValidator = new RequiredFieldValidator();
aRequiredFieldValidator.ControlToValidate = "aTextBox" + i.ToString();
aRequiredFieldValidator.ErrorMessage = "*";
PlaceHolder1.Controls.Add(aTextBox);
PlaceHolder1.Controls.Add(aRequiredFieldValidator);
PlaceHolder1.Controls.Add(new LiteralControl(@"<br />"));
}
Button ButtonShow = new Button();
ButtonShow.Text = "Show";
ButtonShow.Click += new EventHandler(ButtonShow_Click);
PlaceHolder1.Controls.Add(ButtonShow);
TextBox1.ReadOnly = true;
Button1.Enabled = false;
}
}
}
protected void ButtonShow_Click(object sender, EventArgs e)
{
foreach (TextBox aTextBox in ArrayTextBox)
{
Label1.Text += aTextBox.Text + "<br />";
}
}
}
|
|
|
|
|
Date :
2010-03-17 10:38:15 |
By :
tungman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆครับ
|
|
|
|
|
Date :
2010-03-17 15:12:25 |
By :
Darksin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|