VB.net点击按钮从HTML表单中获取数据

时间:2014-03-19 15:13:46

标签: html vb.net

因此,使用我的VB程序,我需要生成一个HTML界面,允许用户插入注释(然后将其存储在访问数据库中)。

到目前为止,我已经获得了表格,但我没有真正的线索:

classcontent.Write(<form action="comment_form.asp">Comment: <input type="text" name="comment"></input><br/><input type="submit" value="Submit"></input></form>)

所以基本上单击按钮我需要将数据插入到输入中进行存储,然后刷新页面。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我完全不了解您的问题,但让我向您展示一个向网络表单提交值的完整示例。

Dim myusername As String = txtuser.Text
Dim mypassword As String = txtpass.Text
Dim mycomments As String = txtcomments.Text
WebBrowser1.Document.GetElementById("username").SetAttribute("value", myusername)
WebBrowser1.Document.GetElementById("password").SetAttribute("value", mypassword)
WebBrowser1.Document.GetElementById("comment").SetAttribute("value", mycomments)
WebBrowser1.Document.Forms(0).InvokeMember("submit")