예제 #1
0
        public static string CreateURL(string url, string title, string text)
        {
            ElementBuilder a = new ElementBuilder("a");

            a.AddAttribute("href", url);
            a.AddAttribute("title", title);
            a.AddContent(text);
            return(a.ToString());
        }
예제 #2
0
        public static string CreateInput(string type, string name, string value)
        {
            ElementBuilder input = new ElementBuilder("input");

            input.AddAttribute("type", type);
            input.AddAttribute("name", name);
            input.AddAttribute("value", value);
            input.SelfClosed(true);
            return(input.ToString());
        }
예제 #3
0
        public static string CreateImage(string src, string alt, string title)
        {
            ElementBuilder img = new ElementBuilder("img");

            img.AddAttribute("src", src);
            img.AddAttribute("alt", alt);
            img.AddAttribute("title", title);
            img.SelfClosed(true);
            return(img.ToString());
        }
예제 #4
0
파일: Program.cs 프로젝트: RumenKunev/OOP
        static void Main(string[] args)
        {
            ElementBuilder div = new ElementBuilder("div");

            div.AddAttribute("id", "page");
            div.AddAttribute("class", "big");
            div.AddContent("<p>Hello</p>");

            Console.WriteLine(div * 2);

            string url   = "#";
            string title = "abv.bg";
            string text  = "abv.bg";

            Console.WriteLine(HTNLDispatcher.CreateURL(url, title, text));
        }