#andrew_111555
1 messages · Page 1 of 1 (latest)
I am trying to find where it shows that. I was before MVC came about, back when it was just called "ASP.NET"
It's showing ASP.NET version
4.0.30319.42000
Looking at this article : https://learn.microsoft.com/en-us/dotnet/framework/migration-guide/how-to-determine-which-versions-are-installed
For .NET Framework versions 4, 4.5, 4.5.1, and 4.5.2, the string representation of the returned Version object has the form 4.0.30319.xxxxx, where xxxxx is less than 42000. For .NET Framework 4.6 and later versions, it has the form 4.0.30319.42000.
So it looks like you're using .NET Framework 4.6 and later versions. What .NET Framework version are you using specifically? Our official dotnet library only supports .NET Framework 4.6.1+
Sorry for the late reply, it is running on .Net version 4.6.01586
So if you only support 4.6.1+, what is the other option?
or, should we just upgrade our .Net version?
You won't be able to use our dotnet library : https://github.com/stripe/stripe-dotnet?tab=readme-ov-file#stripenet and will need to construct your own requests. However, I'll strongly recommend that you upgrade so that you can use our library. The library is basically a wrapper for the underlying HTTP requests with some useful features like automatic retries, idempotency keys and robust error handling. You could roll your own, but you'd be reinventing the wheel and would be opening yourself up to all sorts of unhandled edge cases and increasing problems as your integration gets more complex.
Stripe.net is a sync/async .NET 4.6.1+ client, and a portable class library for stripe.com. - GitHub - stripe/stripe-dotnet: Stripe.net is a sync/async .NET 4.6.1+ client, and a portable class libr...
ok I'll look at upgrading our .Net version and then come back.
Once the .Net version is updated, am I right that I would not need to be using ASP.Net Core?
i mean, it depends on what you're trying to do? AFAIK, .NET Core and .NET Framework are used to build different kinds of apps. Our dotnet library supports .NET Standard 2.0+, .NET Core 2.0+, and .NET Framework 4.6.1+
I am just trying to use the stripe hosted page, which means creating an ID in our system for that specific payment, then passing that, plus the following to stripe:
- the dollar amount
- some text to display to the user for that purchase
- the stripe ID of who the payment goes to
then stripe does everything and sends the user back, and I would use our back end to retrieve directly from strip whether the payment went through or not
essentially, we would like strip to be doing basically all the functionality through the strip-hosted page, and we just pass the customer to there.
and I am trying to figure out the simplest way for us to get that working (and where to find info on how to do that)