Home > Software engineering >  Is it possible to access server Internet service for web surfing through ASP.NET Core?
Is it possible to access server Internet service for web surfing through ASP.NET Core?

Time:02-24

I have a website running on IIS. All clients can connect to my website through internal network. Is it possible to share server Internet service through ASP.NET application?

CodePudding user response:

There are two scenarios to consider:

  1. You would like to embed a website from the Internet through your application (for instance with iframe) - this is not possible, because the user is still 'downloading' the page to own computer and making connections from there.

  2. You would like to get the content (like texts after crawling) from the Internet via your backend service and expose it to your own Webpage - this is possible as long as your ASP.NET backend application has an Internet connection because the website will connect your backend app directly for fetching data.

  • Related