HTML5 and JS front end with c# backend [closed] - c#

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.

Related

Is ASP.NET a language or not? Which is the fastest way to do something in it? [closed]

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

Change windows form application into MVC [closed]

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 have an application which is built in windows form C# where I have a View, a Model and s ManagerHelper folder with classes in it. I wanted to convert this application into MVC application.
I know it's not convertable and needs to be implemented from scratch. The reason I wish to create to an MVC project is because I'm new to MVC and wish to learn it.
I'm familiar with HTML syntax however this seems to be really hard to get a grip of.
So my question is: What would a good approach if I which to change my windows form application into an MVC application.
Any link to articles or any books recommendation for Learning MVC would be helpful as well.
There was an article about this in MSDN magazine last year. It should help guide you. You can read it HERE

Win Store Apps using Asp.Net [closed]

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.

How to implement MS-FSSHTTP for editing Word with WOPI host on C# and WOPI client is OWA [closed]

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 implementing MS-WOPI host with MS-WOPI client being Office Web Apps. I want to provide Word editing functionality and need to implement MS-FSSHTTP protocol.
I read the documentation http://msdn.microsoft.com/en-us/library/dd943623(v=office.12).aspx and
I also tried to fined some examples, but didn't get the success.
Could someone provide a simple example of MS-FSSHTTP implementation?
Here is a sample implementation using CobaltCore. Pretty much a combination of my answers about WOPI/FSSHTTP on this website in one project.
https://github.com/thebitllc/WopiBasicEditor
I think you're asking for the impossible. There is no such thing as a simple fsshttp server. Look at the videos on MSDN from conferences where they've discussed it. The fsshttp team estimates it will take over a year to properly build out a protocol server. It is not a project for the faint of heart.

How to create a browser plug-in using C#? [closed]

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 3 years ago.
Improve this question
how to create a browser plug in using C#? (something like Flash Player or Unity3d)
This cannot be done using C# only.
WebKit is C++-based, so you'd need at least a C++ wrapper in order to let the browser communicate with your code. Using a mixed-mode C++ DLL that talks to WebKit on one side and to your C# code on the other side should be considered.
The WebKit site does not contain much docs (don't want to criticize, but I couldn't find much there when working with Chromium). Only Apple docs explain plug-ins, but it looks very Apple-oriented. Sorry, not very helpful.

Categories

Resources