Call a javascript function via vb.net in a webbrowser control
- From: Andre Rode <a.rode@xxxxxxxxxxxxxxx>
- Date: Thu, 20 Mar 2008 03:36:00 -0700
Hi!
Since you could help me fixing my last problem, I would like to demand
your help again.
In summary I'm writing an appliation that remotely controls a website.
It has to login (works), choose the right action (works) and put customer
data (works partially)in some fields.
Now some of these fields are being checked via javascript functions. For
example: is the account and the banking code correct?
This function is called in different ways, for example via the onblur
event of the input type in the html form.
How can I call these functions since a simple webbrowser.GetElementById
("inputid").SetAttribute("value",sAccountNo) won't call the onblur event?
I tried
Me.WebBrowser1.Document.GetElementById("customerForm").InvokeMember
("Blur")
or
Me.WebBrowser1.Document.GetElementById("customerForm").InvokeMember
("Change")
or
Me.WebBrowser1.Document.Forms.Item("customerForm").InvokeMember
(nameofthejsfunction)
but nothing works.
the call of the function is similar to this:
fieldChanged('bankAccountPaymentForm');;return;;A4J.AJAX.Submit
('customerForm:bankAccountPaymentForm:BankPaymentRegion','customerForm',e
vent,{'parameters':{'customerForm:bankAccountPaymentForm:
_id548':'customerForm:bankAccountPaymentForm:_id548'}
,'actionUrl':'/OEWeb/pages/newOrder.jsf'} )
the website is realisied by JavaServerFaces if this could have any
meaning.
Hope you can help me again
Greetings from Germany,
André
.
- Follow-Ups:
- Re: Call a javascript function via vb.net in a webbrowser control
- From: \(O\)enone
- Re: Call a javascript function via vb.net in a webbrowser control
- Prev by Date: Re: Databound combobox problem (mouse vs. keyboard)
- Next by Date: Re: Databound combobox problem (mouse vs. keyboard)
- Previous by thread: Databound combobox problem (mouse vs. keyboard)
- Next by thread: Re: Call a javascript function via vb.net in a webbrowser control
- Index(es):
Relevant Pages
|