how to get value from web browser control to windows form application Text Box?
up vote
-1
down vote
favorite
I want to get the value of Dollar rate from web Browser to Windows Form Application Text Box !
c# winforms webbrowser-control
add a comment |
up vote
-1
down vote
favorite
I want to get the value of Dollar rate from web Browser to Windows Form Application Text Box !
c# winforms webbrowser-control
What have you tried so far?
– nilsK
Nov 8 at 10:45
1
The HtmlDocument class provides tools to extract informations fromHTML
elements and grouping functions to aggregate elements that have common/specific attributes. See the HtmlDocument.GetElementsByTag for example.
– Jimi
Nov 8 at 11:06
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I want to get the value of Dollar rate from web Browser to Windows Form Application Text Box !
c# winforms webbrowser-control
I want to get the value of Dollar rate from web Browser to Windows Form Application Text Box !
c# winforms webbrowser-control
c# winforms webbrowser-control
asked Nov 8 at 10:27
Umair Rasheed
1144
1144
What have you tried so far?
– nilsK
Nov 8 at 10:45
1
The HtmlDocument class provides tools to extract informations fromHTML
elements and grouping functions to aggregate elements that have common/specific attributes. See the HtmlDocument.GetElementsByTag for example.
– Jimi
Nov 8 at 11:06
add a comment |
What have you tried so far?
– nilsK
Nov 8 at 10:45
1
The HtmlDocument class provides tools to extract informations fromHTML
elements and grouping functions to aggregate elements that have common/specific attributes. See the HtmlDocument.GetElementsByTag for example.
– Jimi
Nov 8 at 11:06
What have you tried so far?
– nilsK
Nov 8 at 10:45
What have you tried so far?
– nilsK
Nov 8 at 10:45
1
1
The HtmlDocument class provides tools to extract informations from
HTML
elements and grouping functions to aggregate elements that have common/specific attributes. See the HtmlDocument.GetElementsByTag for example.– Jimi
Nov 8 at 11:06
The HtmlDocument class provides tools to extract informations from
HTML
elements and grouping functions to aggregate elements that have common/specific attributes. See the HtmlDocument.GetElementsByTag for example.– Jimi
Nov 8 at 11:06
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You can do it another way, but this is not proper way to do but got little ideas.
First get the WebView
content in string and then you can operate on hat string.
string str = webBrowser1.Document.ToString();
This may be or may not work.
You can also use cookies for that if you are opening your own URL.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You can do it another way, but this is not proper way to do but got little ideas.
First get the WebView
content in string and then you can operate on hat string.
string str = webBrowser1.Document.ToString();
This may be or may not work.
You can also use cookies for that if you are opening your own URL.
add a comment |
up vote
0
down vote
You can do it another way, but this is not proper way to do but got little ideas.
First get the WebView
content in string and then you can operate on hat string.
string str = webBrowser1.Document.ToString();
This may be or may not work.
You can also use cookies for that if you are opening your own URL.
add a comment |
up vote
0
down vote
up vote
0
down vote
You can do it another way, but this is not proper way to do but got little ideas.
First get the WebView
content in string and then you can operate on hat string.
string str = webBrowser1.Document.ToString();
This may be or may not work.
You can also use cookies for that if you are opening your own URL.
You can do it another way, but this is not proper way to do but got little ideas.
First get the WebView
content in string and then you can operate on hat string.
string str = webBrowser1.Document.ToString();
This may be or may not work.
You can also use cookies for that if you are opening your own URL.
edited Nov 8 at 17:22
zx485
12.7k122845
12.7k122845
answered Nov 8 at 11:07
Nakul
718
718
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53205833%2fhow-to-get-value-from-web-browser-control-to-windows-form-application-text-box%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
What have you tried so far?
– nilsK
Nov 8 at 10:45
1
The HtmlDocument class provides tools to extract informations from
HTML
elements and grouping functions to aggregate elements that have common/specific attributes. See the HtmlDocument.GetElementsByTag for example.– Jimi
Nov 8 at 11:06