明天的明天 永远的永远 未知的一切 我与你一起承担 ??

是非成败转头空 青山依旧在 几度夕阳红 。。。
随笔 - 1277, 文章 - 0, 评论 - 214, 阅读 - 320万
  博客园  :: 首页  :: 管理
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

net框架网页中自动插入数据 ,网上搜集了一些资料


首先对webBrowser加载网页

this.webBrowser1.Url = new System.Uri("url地址", System.UriKind.Absolute);

给一般不是框架网页中的文本框赋值
webBrowser1.Document.GetElementById("文本框ID").InnerText = "weiling";//文本框赋值根据ID赋值
或者:this.webBrowser1.Document.All["文本框name"].SetAttribute("value", "0924");//文本框赋值根据name赋值

表单提交,也可以看成是一个点击事件
 HtmlElement form = webBrowser1.Document.GetElementById("formID");//提交表单
 form.InvokeMember("submit");

框架网页中的文本框赋值,"frameMain"是框架的name
webBrowser1.Document.Window.Frames["frameMain"].Document.GetElementById("txtXingming").InnerText = "521656";//框架赋值
注:frameMain 是框架的name

框架网页中下拉框赋值
HtmlDocument doc = webBrowser1.Document.Window.Frames["frameMain"].Document;//框架下下拉框赋值
HtmlElement el = doc.GetElementById("drpXingbie");
el.SetAttribute(
"selectedIndex""1");

 

框架网页中文本框赋值
代码

复制代码
   HtmlElement tbUserid = webBrowser1.Document.Window.Frames[0].Document.All["username"];
            tbUserid.SetAttribute(
"value""k221");

            HtmlElement tbPasswd 
= webBrowser1.Document.Window.Frames[0].Document.All["passwd"];
            tbPasswd.SetAttribute(
"value""33311");  

            HtmlDocument htmlDoc 
= webBrowser1.Document.Window.Frames[0].Document;
            
foreach (HtmlElement h in htmlDoc.All)
            {
                
if (h.GetAttribute("type").ToString() == "submit")
                {
                    
if (h.GetAttribute("value").ToString() == "确定")
                    {
                        h.InvokeMember(
"click");
                        
break;
                    }
                }
            }
复制代码

 

 


 获取框架内Html页面内容

1.获取frame的源文件

MessageBox.Show(webBrowser1.Document.Window.Frames["main"].Document.Body.InnerHtml);

2.获取frame的HTMLDocument接口

HTMLDocument doc = (HTMLDocument)webBrowser1.Document.DomDocument;
object j;
for (int i = 0; i < doc.parentWindow.frames.length; i++)
{
j = i;
HTMLWindow2Class frame = doc.parentWindow.frames.item(ref j) as HTMLWindow2Class;
if (frame.name == "main")
{                   
MessageBox.Show(frame.document.title);                    
}
}      

3.获取frame的IHTMLDocument2接口

IHTMLDocument2 doc = (IHTMLDocument2)webBrowser1.Document.Window.Frames["main"].Document.DomDocument;

4.取得frame中被点击的连接

private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e)
{
string url = webBrowser1.Document.Window.Frames["main"].Document.ActiveElement.GetAttribute("src");
}

 

 

 

webBrowser1.Navigate(new Uri("http://asd10000.com/"));

webBrowser1.ScriptErrorsSuppressed = true;
webBrowser1.AllowWebBrowserDrop = false;
webBrowser1.WebBrowserShortcutsEnabled = false;
webBrowser1.IsWebBrowserContextMenuEnabled = false;  //'屏蔽右键菜单

 

复制代码
代码
 if (webBrowser1.Document.Window.Frames == null)
                
return;

            HTMLDocument doc 
= webBrowser1.Document.DomDocument as HTMLDocument;
            HtmlWindow window 
= webBrowser1.Document.Window.Frames[0];
            doc 
= window.Document.DomDocument as HTMLDocument;

            HTMLInputElementClass input 
= doc.all.item("username"0as HTMLInputElementClass;
            input.value 
= "222an1";

            input 
= doc.all.item("passwd"0as HTMLInputElementClass;
            input.value 
= "222111";

            HtmlDocument htmlDoc 
= webBrowser1.Document.Window.Frames[0].Document;
            
foreach (HtmlElement h in htmlDoc.All)
            {
                
if (h.GetAttribute("type").ToString() == "submit")
                {
                    
if (h.GetAttribute("value").ToString() == "确定")
                    {
                        h.InvokeMember(
"click");
                        
break;
                    }
                }
            }

复制代码

 

 

 

 

 

编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
历史上的今天:
2009-09-10 Asp.Net 与 js 的转义 (附Jquery实现的柱状图自定义对比图...)
点击右上角即可分享
微信分享提示