Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a mobile version of an ASP.NET web site?

I have a website created using asp and I want to make it accessible to mobile phones, such that a user can use it through his/her cell phone.

I don't have any knowledge of XML or .NET.

How can I do this?

like image 356
PHP Ferrari Avatar asked Sep 02 '10 04:09

PHP Ferrari


2 Answers

ASP.NET Mobile Web Pages says

"The Microsoft Visual Studio integrated development environment (IDE) enables you to easily build ASP.NET applications that include mobile Web pages. You can include mobile Web pages in any ASP.NET Web site alongside ASP.NET Web pages. In Visual Studio, you can work with the adaptive rendering, customization, and extensibility features of ASP.NET mobile controls, using the standard IDE design tools: the page designer, the Toolbox, the debugger, Source view, Design view, and more."

Getting Started with ASP.NET Mobile Pages



Some other useful tutorials:

  • Mobile Web Development with ASP.NET 2.0
  • Building Mobile Web Applications with .NET Mobile Web SDK & ASP.NET
  • Introduction to ASP.NET Mobile
like image 100
Naveed Avatar answered Sep 20 '22 23:09

Naveed


Back in the day you would have needed XML to create WAP sites, but no more. Almost all smartphones have reasonably good built in HTML browsers, with standards compliant support for JavaScript and CSS.

I would suggest making a start here: http://www.asp.net/mobile/

like image 22
Sam Huggill Avatar answered Sep 21 '22 23:09

Sam Huggill