最初未在文档文本中定义时检索元素属性值

时间:2013-03-15 04:07:07

标签: c# webkit open-webkit-sharp

假设我们有一个WebKitBrowser控件,我们将DocumentText设置为......

wkb.DocumentText = @"
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01//EN' 'http://www.w3.org/TR/html4/strict.dtd'>
<html>
<head></head>
<body>
<form>
<input type='text' id='test' name='smith'><br>
</form>
</body>
</html>
";

如果我要通过C#获取该输入字段中的用户输入,那么正确的方法是什么?

如果我在HTML中预定义了value属性,比如......

<input type='text' id='test' name='smith' value='freedom'>

然后MessageBox.Show(wkb.Document.GetElementById("test").getAttribute("value"));准确显示“自由”。但是,如果未定义值,则结果始终为空(我假设它为空且不仅为空)。

这对我有意义,但我会获取用户输入,而不是预定义的值。我想可以将整个文档保存为字符串并解析它,但在使用 element.value 路由的标准IE浏览器控件中更简单。我的美味选项是什么?

2 个答案:

答案 0 :(得分:0)

您无法在C#客户端读取表单值。您必须回发(AJAX或完全回发)表单以读取C#中的值。如果您想查看值是否已更改,可以使用jQuery的.on('blur' ...来捕获更改的值并将AJAX帖子发回服务器。

答案 1 :(得分:0)

我还想补充一点,这种方法很有用,有点像viperguynaz的正确答案。

基本上,您为webkit浏览器控件创建导航方法,然后指向webkit浏览器控件在事件部分中执行此操作。您在HTML端执行功能无用的表单提交,然后解析用户输入的参数,然后关闭,等待您的幻想。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Web;
using WebKit;

namespace test_run
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            wkb.DocumentText = @"
                <!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01//EN' 'http://www.w3.org/TR/html4/strict.dtd'>
                <html>
                <head></head>
                <body>
                <form method='get'>
                <input type='text' name='pike'><br>
                <input type='submit' value='Submit'>
                </form>
                </body>
                </html>";
        }

        private void Form1_Load(object sender, EventArgs e)
        {
        }

        private void button1_Click(object sender, EventArgs e)
        {

        }

        private void wkb_navigating(object sender, WebKitBrowserNavigatingEventArgs e)
        {
            string param1 = HttpUtility.ParseQueryString(e.Url.ToString()).Get(0);
            MessageBox.Show(param1.ToString());


        }
    }
}