Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
WineIsGood said:How will your ASPX page written in ASP.NET run at all if the .NET framework is not installed???
-Dave
riley said:That was my first thought too, Dave. But after rereading Ashifrin's post, I think he just wants to see if the client has the .Net framework installed. Perhaps he is distributing .Net applications he has written and is trying to see if the target computer is capable of running them.
I'm not sure if you can get this information from a client-side script, but you can probably get the information on the server-side from the HTTP_USER_AGENT server variable. If the framework is installed on the client computer, the HTTP_USER_AGENT will look something like this:
Mozilla/4.0 (compatible; MSIE+6.0; Windows NT 5.1; .NET CLR 1.1.4322)
The ".NET CLR 1.1.4322" indicates that the 1.1.4322 common language runtime is installed. I'm not sure this is completely reliable, but you can give it a try...
riley
riggers said:I think this only works in IE.
Using firefox my weblogs show me as:
Mozilla/5.0+(Windows;+U;+Windows+NT+5.1;+en-US;+rv:1.6)+Gecko/20040206+Firefox/0.8
WineIsGood said:How will your ASPX page written in ASP.NET run at all if the .NET framework is not installed???
-Dave
Cinil said:If you want to install a .net application on the client machine,your setup file will be already having the required files with it.It should have already packed the required .net files.