How to get repeater values in single text box
Like
in my repeater control having 4 values
name
adress
Phone
Price
i want these 4 values in single text box
any idea
thanks in advance
Refer
foreach (RepeaterItem item in Repeater1.Items) { this.txtCustomerName.Text += (item.FindControl("lblName") as Label).Text + ","; } this.txtCustomerName.Text = this.txtCustomerName.Text.Remove(this.txtCustomerName.Text.LastIndexOf(",") - 1);
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.