在C#中动态创建href属性

时间:2014-01-23 09:17:51

标签: c# hyperlink

这是用于创建Google链接的C#代码

href.Controls.Add(Image);
href.Attributes.Add("href", "www.google.com");
href.Attributes.Add("target", "_blank");
href.Attributes.Add("title", "Click To Follow The Link");

但是当我点击它时,它带给我的网址是

http://localhost:52647/Mywebsite/www.google.co.za

关于如何让它直接进入谷歌的任何想法?

2 个答案:

答案 0 :(得分:5)

尝试使用http://

作为前缀
href.Controls.Add(Image);
href.Attributes.Add("href", "http://www.google.com");
href.Attributes.Add("target", "_blank");
href.Attributes.Add("title", "Click To Follow The Link");

答案 1 :(得分:1)

更改href.Attributes.Add(“href”,“www.google.com”); to href.Attributes.Add(“href”,“http://www.google.com”);