Answers for "create anchor tag dynamically c#"

C#
0

create anchor tag dynamically c#

HtmlAnchor htmlAnchor = new HtmlAnchor();
          htmlAnchor.HRef = "www.google.com";
          htmlAnchor.InnerText = "Click";
          divTest.Controls.Add(htmlAnchor);
Posted by: Guest on June-19-2021

C# Answers by Framework

Browse Popular Code Answers by Language