Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I was going through Win store apps and came to know that you can use HTML5 and CSS3.
A quick question (might be silly), can we build Win 8 Apps using Asp.Net (or MVC)? If yes, how can we target our output to Win 8 App output instead of browser?
Thanks
Good question, but such an option isn't available. If you think it through, it'd be significant engineering work. ASP.NET is designed to run on a server and dynamically adapt to the host browser. To target an app output would mean running the ASP.NET code as part of the compilation process to get app-specific HTML, CSS, and JavaScript. In addition, ASP.NET would have to be extended to provide access to WinRT APIs, but those are client APIs and not server-side APIs.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am looking to learn ASP.NET but the information I have found about this subject get me a little confused. I thought ASP.NET was a language that you learned and then you program in it like is PHP, but what I have found is that you have to use VB or C#, Angular JS, and some other things to make something in ASP.NET.
So is ASP.NET a language or not? What is it exactly? Do I have to learn more than one language to do something in ASP.NET? which is the fastest way to start doing things in ASP.NET?
From Microsoft docs:
ASP.NET is a free web framework for building great Web sites and Web
applications using HTML, CSS and JavaScript. You can also create Web
APIs, mobile sites, use real-time technologies like Web Sockets and
more!
You need to know C#, HTML, Javascript to get started with
For Additional Information:
http://www.asp.net/get-started
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to do somthing like this.Let's say I have a satellite image. I want to classify this into several vegetation indices. but I wantto do this programmatically. without involving any user or without opening ArcGIS. I know we can write script in python in arcgis to do some tasks. Like wise is there any way to call these ArcGIS functionalities within a normal .net application.
Please help me
The ArcGIS Runtime SDK for .NET (Windows Desktop) enables developers to create applications with high-quality interactive mapping, queries, geocoding, routing, data editing and advanced geographic analysis.
From here:
https://developers.arcgis.com/net/desktop/api-reference/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am a novice software developer and I am building desktop applications using C#. I want to make my applications expire and generate a license file to activate the application after it expires. Meaning I want to include a time bomb to all my applications and detonate it by using the generated license file.
There are many ways to achieve this - the .NET-Way is described here in this MSDN-Article:
How to: License Components and Controls
If you are developing a windows 8 app and you want to find out a way to create a trial version of your app then I think the following article does a pretty good job of explaining how to do it.
http://msdn.microsoft.com/en-us/library/windows/apps/hh694065.aspx
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I have made a C# Windows Forms application and connected it with Microsoft SQL Server.
I want to allow all machines in the LAN to use the program and connect to the SQL server but without having to set up the program on all the machines.
I wondered if I can do this with ASP.NET.
How do I do it? Are there any tutorials for this sort of task?
Anything on the difference between web forms, MVC Web API .. ETC.
It's very easy! Create an empty Web Forms project, drag controls onto it in the same manner you did with your desktop application. Then add your code, objects, logic, etc => see what you've got in the browser and if you like that publish it to the server and guess what?...RIGHT! Now it's accessible over the network without any need to install the desktop version.
Hope that answers your question.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Is it possible to have a dynamic website built using HTML5, CSS, JS and have it link to a backend using c#?
Am new to the whole microsoft side of development (coming from a php background) and haven't a clue.
thinking in terms of medium to enterprise applications.
thanks
Yes, use asp.net mvc...This is what you want: http://www.asp.net/mvc/mvc4
Here is a bunch of good video tutorials: http://www.asp.net/mvc/videos/pluralsight-building-applications-with-aspnet-mvc-4
Yes. Although I'd recommend looking at things like Angular.js (its what Gmail uses) to provide the best experience on the front-end. The backend can still be C# either ASP.NET[MVC] or WebAPI.