webbroser控件
IHTMLFormElement *pForm;
获得了表单指针后提交
pForm->submit();
form的html是下面这样
<form action="https://www.xxxxx.com/?login" method="POST" onsubmit="return checkForm(this);">
想问一下vc提交时onsubmit="return checkForm(this);这句执行了吗?