本文介绍了将列表项复制到Html Web TextBox的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 这是我的代码,它是为了获取一个listitem并将其复制到网页上的web文本框。 然而最后一行没有请帮忙解决这个问题 foreach ( string s in resultslist.items) { HtmlElementCollection allelements webBrowser1.Document.All ; foreach (HtmlElement webpageelement in allelements) { if (webpageelement.GetAttribute( name) == name) { webpageelement.SetAttribute(s); } } } 解决方案 取决于它是什么类型的元素,如果它一个输入元素,然后你可以这样设置: webpageelement.SetAttribute(value,s); 如果它是一个文本区域,它有点不同,因为输入不是属性。 This is the code i have, it is meant to take a listitem and copy it to a web textbox on a webpage.However the last line doesn''t work please help me fix this pleaseforeach (string s in resultslist.items){HtmlElementCollection allelements webBrowser1.Document.All;foreach (HtmlElement webpageelement in allelements){if (webpageelement.GetAttribute("name") == "name"){webpageelement.SetAttribute(s);}}} 解决方案 Depends on what kind of element it is, if its an input element, then you would set it like:webpageelement.SetAttribute("value", s);If its a text area it''s a little different because the input isn''t an attribute. 这篇关于将列表项复制到Html Web TextBox的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 09-01 23:38