How to get Control values from a web application that has been opened thru WPF WebBrowser Control(C#) -
I have a problem.
I am calling an external application (web) through a WPF WebBrowser control.
The application is opening properly now in the web application, there are some hyperlinks.
If a user clicks on that hyperlink, then I should be able to determine its value.
How to get it using this web browser .. I mean, in which case, what code I want to write to work this
C # 3.0, Use of WPF and DotNet Framework 3.5
thanks
Try it out.
Private Zero _webBrowser_Navigating (Object Sender, NavigatingCancelEventArgs e) {if (String.IsNullOrEmpty (e.Uri.AbsolutePath)) {e.Cancel = true; String actionName = e.Uri.LocalPath; MessageBox.Show (actionName); }} Regards, Nanda
Comments
Post a Comment