利用c#语言程序自动打开浏览器,源码怎么编写?

 我来答
大祁叔叔
2010-01-22 · TA获得超过162个赞
知道小有建树答主
回答量:394
采纳率:0%
帮助的人:92.1万
展开全部
下面的都可以实现,我再给你发另外一种,很猛的

/// <SUMMARY>
/// Creates a COM object given it's ProgID.
/// </SUMMARY>
/// <PARAM name="sProgID">The ProgID to create</PARAM>
/// <RETURNS>The newly created object, or null on failure.</RETURNS>
public object COMCreateObject(string sProgID)
{
// We get the type using just the ProgID
Type oType = Type.GetTypeFromProgID(sProgID);
if (oType != null)
{
return Activator.CreateInstance(oType);
}

return null;
}

/// <summary>
/// Opens a new Internet Explorer window and navigates it to the URL.
/// This code is for demonstration purposes only.
/// From http://www.novicksoftware.com/TipsAndTricks/tip-csharp-open-ie-browser.htm
/// </summary>
/// <param name="sURL">URL to navigate to.</param>
/// <returns>true all the time.</returns>
public bool IEOpenOnURL(string sURL)
{

InternetExplorer oIE = (InternetExplorer)COMCreateObject
("InternetExplorer.Application");
if (oIE != null)
{
object oEmpty = String.Empty;
object oURL = sURL;
oIE.Visible = true;
oIE.Navigate2(ref oURL, ref oEmpty, ref oEmpty, ref oEmpty, ref oEmpty);
}
return true;
}

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
IEOpenOnURL(linkLabel1.Text);
}
百度网友ab76cc0bb
2010-01-21 · 超过16用户采纳过TA的回答
知道答主
回答量:52
采纳率:0%
帮助的人:0
展开全部
不知道你是要winform还是web的

winform: System.Diagnostics.Process.Start("IExplore.exe", @"网址");

web: Response.Redirect("网址",true/false)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lcg1986
2010-01-21 · TA获得超过3374个赞
知道大有可为答主
回答量:1858
采纳率:90%
帮助的人:1622万
展开全部
System.Diagnostics.Process.Start("iexplore.exe","URL地址");
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式