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
How to implement and integrate "Stripe" on-line payment gateway using ASP.NET and C#? When I go through their on-line documentation, then found only 4 ways to implement the same i.e.
RUBY
PYTHON
PHP
NODE.JS
I have no experience implementation NODE.JS with ASP.NET and C#. If possible, help me out on how to integrate STRIPE using ASP.NET and C#.
I know there are 3 libraries present on GitHub for C# to implement Stripe Payment Gateway i.e.
XamarinStripe by the people at Xamarin.
Stripe.NET by Jayme Davis.
ServiceStack.Stripe by TeamServiceStack
But they are not very well explained in the Readme File on GitHub, that is why seek guidance in a proper way to implement the same.
There is a .net library for Stripe. Have a look at following link
https://github.com/jaymedavis/stripe.net
Related
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 3 years ago.
Improve this question
I began to study the azure function
An interesting question is how to implement the function of translating text into any language
I searched for books and googled, and watched the training videos on YouTube, but could not realize it
Also in the future, the process of testing functions is interesting.
For example, how to send a million requests and track errors
Can anyone tell me how to implement this function-translator? Or someone has similar.
Thanks
You can use Cognitive Services (Text API) which will perform the translations for you.
Here's a sample about how to do it: https://learn.microsoft.com/en-us/azure/cognitive-services/translator/quickstart-translate?pivots=programming-language-csharp
Another good example in here: https://anthonychu.ca/post/realtime-captioning-translation-cognitive-services-signalr-azure-functions/ (this one with Azure Functions)
and more info about the supported languages: https://learn.microsoft.com/en-us/azure/cognitive-services/translator/language-support
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
If I have an API of a WebService and i were asked to make a website for this WebService how can I do it using c#(Visual Studio) ?
Open a project like : visual c# -> ASP.NET Web Application? like programming a standard website ? or do I need to open a different type of project or configure other things ?
If any one got a nice tutorial or something similar i appreciate it...a lot!
A journey of a thousand miles begins with a single step.
Here's a great tutorial that will teach you how to build an MVC website that uses a WebAPI:
http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api
Did you heard about Webmatrix? http://www.microsoft.com/web/webmatrix/. Its a great tool to create websites within minutes. And they have also a lot of tutorials for beginners: http://pluralsight.com/training/courses/tableofcontents?courseName=webmatrix-introduction.
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 4 years ago.
Improve this question
I am a .Net Developer. I don't know anything about WordPress.
I got a website project. The some parts of project are created in WordPress.
I have to add some new functionality in existing project.
My question is that can I integrate existing WordPress website into ASP.Net(VS2010)?
I want to run both WordPress website and My Asp.Net Website together.
If it is possible then How can I do this?
Peachpie has been recently released. WordPress can be compiled to and executed on .NET (asp.net and .net core) with Peachpie. You can also write WordPress plugins in c#, so it can be a good choice for your problem.
The best way to go with integrating Wordpress and ASP.NET is by using one of the supported XML-RPC protocols. You can see more about it here: http://codex.wordpress.org/XML-RPC_Support
or
use Orchard http://www.orchardproject.net/ is the must close System to wordpress at ASP.net and it's actually very good one! it's the best open source CMS in ASP.net the architecture of the system is very like wordpress.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
We are about to implement a Web Service component and we are making a discussion regarding the language that we are going to implement it. It will be either C# or Java. Some of us are supporting Java while other members of the team are supporting C# mainly based on our experience and previous knowledge . Which of these two languages would be the better approach? Answer should consider issues such as Hosting and Deployment. Also please do not turn this in another war between these 2 great languages
Thank you
I don't think that there is any technological challenge of creating Rest based services in any of the language either C# or Java.
It mostly depends upon the skill set and echo system of your company. If you are already working in .net and windows stack and have developer with the same skill set then you can choose Asp.net WebApi otherwise you can go for JAVA.
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
I have a scenario in my current application where I want to fetch the Gmail id's of my users.
Could anyone tell me the way with piece of code in C#?
Note: I am developing a web-base application in asp.net with C#.
Use the google contacts api there are C# sample there.
You can use the Google Accounts API.
You can find an example here.
Take a look at the open source .Net library gmailapi.The GmailAgent has a GetContacts method for retrieving all the contacts.