I need to open a web page from my WPF app and also pass to the webpage certain parameters that are needed by a JavaScript function. Can I do that?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I found another way. There’s a control called WebBrowser in which you can set up the property “source” with the Uri of the page you want to navigate and casting this control to (WebBrowser) can calls the function .InvokeScript(“NAME OF THE FUNCTION”,Object PARAMETERS). It is really useful!