| Author: Roshan R Mhatre 23 Jul 2008 | Member Level: Gold Points : 1 |
This is C# Code for Dynamic Link Button
LinkButton linkToSecondPage=new LinkButton(); linkToSecondPage.Text = "LinkToSecondPage"; form1.Controls.Add(linkToSecondPage); linkToSecondPage.PostBackUrl = "Default2.aspx";
|