如何在WebBrowser控件中超链接到图像

如何在WebBrowser控件中超链接到图像

本文介绍了如何在WebBrowser控件中超链接到图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

我想要超链接到WebBrowser控件中的图像,但以下代码有问题:-webBrowser1.Document.Images [0] .Document.ExecCommand("CreateLink",false,url);
谁能帮我.

在此先感谢.

Hello,

I want hyperlink to a image in WebBrowser control ,but having problem to do by following code:- webBrowser1.Document.Images[0].Document.ExecCommand("CreateLink", false, url);
Can anyone please help me.

Thanks in Advance.

推荐答案

webBrowser1.Url = new Uri("http://www.codeproject.com");


对于Web应用程序


For Web Application

<a href="http://www.espn.com" target="_blank">
 <img src="ahman.gif" />
</a>


希望对您有帮助
快乐编码:)
祝您好运


Hope it helps u
Happy Coding :)
Best Luck




这篇关于如何在WebBrowser控件中超链接到图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 23:54