CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 2007
    Posts
    405

    Name of the software that can package websites to install on smartphones ?

    Suppose I have a website written in asp.net and the database is SQL Server, after I "Publish the web site" and I want to encode this code for smartphones (both android and Android operating systems) iphone) what software do I use? Note that I only packaged the code in "Publish web site" and the SQL Server data I still kept on the server (not packing the SQL Server data)

  2. #2
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Name of the software that can package websites to install on smartphones ?

    You can't publish a website to work as an app on android or iPhone. Furthermore the legacy asp.net (using ascx files) is very old. Instead use asp.net with MVC or better yet create a website with .net core 3.0.

    At any rate, that will get you a website that can be loaded in a browser on android and iPhone.

    If you need an app that is installed to android or iPhone through the app or play store, you need to look at using something like Xamarin.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured