Tagged Questions

21
votes
5answers
12k views

.NET - Get protocol, host, and port

Is there a simple way in .NET to quickly get the current protocol, host, and port? For example, if I'm on the following URL: http://www.mywebsite.com:80/pages/page1.aspx I need to return: ...
2
votes
1answer
99 views

Regex matching url authority parts

I need to match these parts of the following string: (user)@(hostname):(port) User and port can optionally be matched. First I managed it with this regular expression: ...