Tracht-Shop Tracht-Shop Feed FriendsPoint.de German Wear.com German Wear.EU
Write an Article Write a Tutorial Add a Fast Code* *Fast Code might be any helpful code with brief comment
Tutorials: ASP .NET C# .NET VB .NET Articles: ASP .NET C# .NET VB .NET Fast Code: ASP .NET C# .NET VB .NET
some time we need to add a Number of same controls to the Page. Following is the code:
Button[] BtnArray=new Button[10]; for (int i = 0; i < 10; i++) { BtnArray[i] = new Button(); BtnArray[i].Width = 100; BtnArray[i].Text = @"Button " + i.ToString(); Page.Form.Controls.Add(BtnArray[i]); BtnArray[i].Click += new EventHandler(TestMe_Click); } void TestMe_Click(object sender, EventArgs e){ Label1.Text = ((Button)sender).Text; }
17/03/2009 07:18:06 UTC