Web application

Associate
Joined
30 Mar 2004
Posts
1,148
Location
West Wing
Hi,

I have made a small windows application in Visual Studio C# that I use for work. What I want to do is be able to use this application when im out and about on my smart phone. So I was thinking of somehow hosting this app on a web page that I can access through a browser on the phone. Whats the best way of doing this?

The application consists of a single form with a couple buttons and a text box and a label to display the output.

I did consider making an Android application but I would be learning from scratch how to make an android app which I dont really want to do.

Thanks,
 
Soldato
Joined
9 Mar 2010
Posts
2,841
If it's written in C# you just need to replace the windows forms with ASP.Net alternative pages.

If you've got sensibly written code all the business logic should be separated from your forms anyway and all you'll have to do is recreate the look in HTML.

Get some suitable hosting and you're good to go!
 
Associate
Joined
22 Apr 2011
Posts
1,176
If it's just a basic form, just build a simple MVC app, and protect pages with the bit in authentication. Bit over kill creating a whole android app imo.
 
Back
Top Bottom