Help with LinkButton
I would like to create a LinkButton on any term in the database that is enclosed by <term></term> tags. My problem is how do I create the LinkButton in the database and not how I currently have it working. Right now I am storing the matched term in a placeholder.
Thanks!!
foreach (DataRow row in rows)
{
System.Text.RegularExpressions.Regex regex = new System.Text.RegularExpressions.Regex("(?<=<term>). *(?=</term>)");
System.Text.RegularExpressions.Match match = regex.Match(row["Definition"].ToString());
LinkButton lb1;
lb1 = new LinkButton();
lb1.Text = match.ToString();
PlaceHolder2.Controls.Add(lb1);
lb1.Click += new EventHandler(lb1_Click);
}
|