How to open a local webview cshtml in Xamarin Forms

1

I have a project in Asp net mvc and another in Xamarin Forms, I need to call in my Xamarin Forms project a WebView Local but the page is like cshtml (asp net)

    
asked by anonymous 01.05.2018 / 23:27

1 answer

0

It will not roll. cshtml is a project file extension that needs to be compiled , published on an asp.net server so at the time of the web request is processed and only then the HTML page is delivered to the client (in your case the webview).

At best, you'll be able to navigate through html-based content within the application itself, but it's hard to say if that would only serve you with the information you've provided so far.

    
02.05.2018 / 20:20