All Questions
49 questions
0
votes
0
answers
149
views
Get URL from browser (GoogleChrome, Opera, Firefox, Edge, Brave) in WPF Desktop App
I have created a WPF desktop application. This detects active window, if active window is browser, app gets URL of current process.(the function is written below). This method 50% working and 50% not.
...
0
votes
0
answers
296
views
How to get real URL display on browser if there is proxy
I have an application, and has proxy url applied.
ProxyUrl: myproxyurl/myapp
InternalUrl: myurl/myapp
now in code, if use Request.Url, it will get myurl/myapp
how can i get myproxyurl/myapp
3
votes
1
answer
3k
views
C# Get the URL of the active tab of browser
I have an application which on focus change should be able to retrieve the URL of the currently active tab if the opened program is a browser otherwise should just return the name of the program.
For ...
0
votes
0
answers
396
views
c# Open Default browser with a link and wait for a response
The problem is I will open a link (facebook login) and wait for the user to login then get whats written after. The link will be open by c# desktop app/WinForms.
I have done what I want to achieve ...
0
votes
2
answers
86
views
How does a browser resolves/constructs an absolute url from a relative one
A website showing url in browser addressbar : www.something.com/abc/def/ghi .
When you view source any websites, anchor tags have relative hrefs like href="../jkl/mno"
When you click the link, how ...
0
votes
0
answers
277
views
C# open new tab if it's not already opened
I am working on desktop app in WPF, with button to open browser.
At this moment I am using this code only :
System.Diagnostics.Process.Start("http://www.website.com");
But I am wondering if it's ...
0
votes
2
answers
905
views
Loop a list url and get list resalt webbrowser c#
i have problem with webbrowser control on c#
i want my program navigate to a url from my list and than save surce page to string than go next url and again Repeat this process. below is my code and ...
2
votes
3
answers
3k
views
Open UWP application when an URL is clicked in the browser
I am developing a simple UWP page with a web view. I would like to know how can I open my application when an URL with https protocol is clicked in the browser. I have already tried this:
Package....
1
vote
1
answer
537
views
Run application from browser
I could not find any information about this. I am sure there is a term for this type of applications, but I have no idea where to look. That's why I decided to ask here.
So there are a few websites ...
3
votes
1
answer
793
views
WPF Process.Start(url) how to know current URL or when window is closed
I have a WPF application that redirects to a payment system and then starts pooling a database to see if the transaction reference was posted back via a different channel.
I had a chat with one of my ...
0
votes
2
answers
1k
views
C# open browser with inserted words
I want to ask you guys if it is possible to do the following:
Type in textbox something like this "search pluto"
and then it must search for that last word.
This is how I did it but it doens't work ...
-1
votes
1
answer
157
views
how can use Application_BeginRequest event in c# window application
I have developed c# windows application and I want to use ASP.NET code like
Application_BeginRequest event in window application for trace URL.
Is it possible or not?
-2
votes
1
answer
365
views
webBrowser1.Navigate(url) ReadyState
I need to navigate to a certain url using a webBrowser1 in my form and performing certain operations:
webBrowser1.Url = new Uri(@url);
webBrowser1.Navigate(new Uri(@url));
var state = webBrowser1....
-1
votes
3
answers
1k
views
Parse a parameter inside URL using C#
Let's say that I have url like http://google.com/index.php?first=asd&second=mnb&third=lkj
How can I get second value (mnb) using c#?
1
vote
2
answers
689
views
How to Disable Website URL in a Web browser?
I want that any user doesn't edit my website URl.
mean that when user login in myWebsite then he/she is on studenthome.aspx and the URL(www.XXXXXX.com/studenthome.aspx) not editable.
This issue when ...