RE: MVC .NET Labelfor
May 31, 2016 at 8:04 pm
(This post was last modified: May 31, 2016 at 8:06 pm by bennyboy.)
(May 31, 2016 at 12:51 pm)KevinM1 Wrote: How are the Android-specific things actually implemented? Does it simply do a user agent check (or something similar), and then send commands to the Android device? Or something else? I've never dabbled in mobile apps.I send a modified user agent string from my Android app and check for it in the javascript in pages or user controls. The interface is built into Android's webview class. To be honest, I'm not good at Android programming, but it was easy to access photos, process them, upload them, etc. You could probably get to my level of knowledge in a couple days of serious puttering and a couple dozen google searches.
Quote:I will say that ASP.NET MVC is ASP.NET, so you have all of that backing technology at your disposal, and that you can also combine MVC projects with web forms. So, on the Microsoft side of things, you can mix and match to your heart's desire.Really? This is something I hadn't considered. So I could have my picture-upload, audio recording etc. on a form page with lots of nested user controls, and I could have things like data entry and display using MVC?