Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I wrote a application on VB.NET (Visual Studio 2015)

But I would like to run on browser. I mean I would like run all platforms. (Windows and Mobile Phone , Android , Mac , etc.)

I tried with XAML WPF (XBAP) but I couldn't run even IE (because I have to make security settings), also It doesn't support any browser.(Chrome,Opera) Also I couldn't run on mobile phones. It is not practical. I tried Silverlight but I couldn't run in mobile phones.

Is there any possibilities/ways working on every platform browser ? It can be HTML5 , Flash (Actionscript), or etc if I can convert code easily...

Please do not offer other programming languages. Because I have no info. about Csharp or any prog. lang.

Thanks.

What I have tried:

I tried
HTML5
Flash
Flex Web Builder
Posted
Updated 25-Feb-16 17:30pm
Comments
Valery Possoz 25-Feb-16 17:28pm    
Look here:
http://www.mikesdotnetting.com/article/230/getting-started-with-asp-net-mvc-5-using-visual-basic

1 solution

What you need is a web application. What you have is a desktop application. You can make use of ASP.Net web forms or ASP.Net MVC. Whatever suits you.

I would recommend keeping the core business logic separate from web application in case you wish to create mobile apps in future (Android/Windows/iOS). You can make use of ASP.Net Web API or WCF. Make sure to write them in a way that communication is lightweight. You do not want to send huge responses to mobile phones. It will eat up a lot of data for users and might end up being slow as well.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900