1

can we install IIS to Windows Mobile 6.1 ? As I Have develop a web application in >net and I want to use that same application in Windows Mobile 6.1 ,PDA, as offline application. Ya Surely I will implement that one with Sql server CE but to run it I have to host it on PDA. So can we host it there???

Azhar
  • 115
  • 3
  • 4
  • 10

1 Answers1

2

Short answer, no, IIS wont run on Windows Mobile.

Long answer (read: alternate solution), your best developing a WinForms (mobile) version using SQL CE.

If you write your code well, place all your business logic within the same assembly, then you can build a regular web interface (asp.net and/or asp.net-mvc) which will implement your business logic, the write the aformentioned WinForms Mobile version, implementing the same class library for business logic.

Nate
  • 2,151
  • 6
  • 26
  • 41
  • so at the end I have to develop mobile version for interface .... and there is no way that I can use that asp.net web version because of IIS absence ... right – Azhar Aug 02 '10 at 07:29
  • Yes; however, if your PDAs have internet access, they could access the same web interface as everyone else. – Nate Aug 02 '10 at 15:03