Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.net mobile application development

Tags:

asp.net

wap

I have an existing website for schools and colleges management which is developed in ASP.NET,C# and SQL Server.

Now I am planning to support for the mobile applications (like basic models from Nokia/Samsung and for opera mobiles). I know the normal site we can access through some of the devices without any change, but needs to be optimized.

I am preparing another version which will be only few required fields and easy navigation for mobile. For that which method I need to use.

  1. Normal ASPX files with optimized HTML code.
  2. Or using WAP controls
  3. Should I use HTML 5

Please help me to decide.

like image 729
AjayR Avatar asked Sep 03 '11 01:09

AjayR


People also ask

Can .net be used for mobile apps?

NET is a developer platform made up of tools, programming languages, and libraries for building many different types of applications. Xamarin extends the . NET developer platform with tools and libraries specifically for building apps for Android, iOS, tvOS, watchOS, macOS, and Windows.

Can I use C# for mobile app development?

You can build apps for Android, iOS, and Windows devices by using Visual Studio. As you design your app, use tools in Visual Studio to easily add connected services such as Microsoft 365, Azure App Service, and Application Insights. Build your apps by using C# and the . NET Framework, HTML and JavaScript, or C++.

Can I use Visual Studio for mobile app development?

Cross-platform game development with Unity and Visual Studio Build your 2D and 3D games with the unparalleled Unity engine in Visual Studio–create once and target over 17 platforms, including all mobile platforms.


2 Answers

I recommend using the HTML5 templates(includes Modernizer) that come with ASP.NET MVC 3 and the jQuery Mobile framework. Let the jQuery Mobile framework do all the multi-device heavy lifting for you.

jQuery Mobile Supported Devices

like image 88
rick schott Avatar answered Oct 27 '22 09:10

rick schott


  1. you can use normal aspx pages without any issue. only thing you need to optimize the file size.
  2. you can develop better solution using HTML5 but only problem is, it is not supporting all the devices.this is used html5
  3. or just use any from List of mobile frameworks
like image 24
Chamika Sandamal Avatar answered Oct 27 '22 08:10

Chamika Sandamal