就像在html中填表一样,我想把填入的信息获取出来,要怎么办?

解决方案 »

  1.   

    我曾经直接用excel打开成功提取过表格数据。
      

  2.   

    可能我没说清楚:就是简单地html网页,其中设定几个空格,可以填内容,然后我想把填入的内容用vc获取出来。
      

  3.   

    HRESULT IHTMLInputElement::get_value(BSTR *p);
    HRESULT IHTMLInputElement::put_value(BSTR v);
    one for read one for write
    fisrt you should IHTMLElement::get_tagName to get the tag"input" then QueryInterface of the IID_IHTMLInputElement ,the compare the name and type to identify the input elementneed VC 7 up or IE platform SDK
      

  4.   

    拦截页面的SUBMIT,在SUBMIT前用IHTMLInputElement::get_value获得值