Split testing for ASP.NET A / B

Does anyone know any good resources (books, articles, existing software, etc.) to learn how to implement A/B split testing in ASP.NET ?

+5
source share
6 answers

FairlyCertain is an AB testing library for ASP.NET that is worth checking out. It fits easily into your project and does not require any of the javascript voodoo that uses Google Website Optimizer (which kills the performance of your website and SEO in just one shot).

I have been using it for several of my projects for several months with great success.

+6
source

I just wrote a short article describing the split testing technique in ASP.Net MVC. You can check it out here.

It does not take a lot of work to make it work with traditional asp.net.

+5
source

For everyone who works in this post, you may find this helpful: http://github.com/htayebi/AbTestMaster

This is an open-source a / b ASP.NET MVC testing environment that allows you to write results to either an sql database or a csv file. You can download the nuget package or, if you want, go through the code on github.

+2
source

I suggest you use display modes to achieve A / B testing.

But display modes just by default support simple problems.

If you are already implementing Display Modes in another scenario. You can consider DisplayModeMatrix (just Google). This helps increase the efficiency of display modes.

https://www.nuget.org/packages/DisplayModeMatrix/

Wth Display modes you can simply delete / rename views after testing A / B to clean your project.

+1
source

If someone is looking for a more advanced, paid solution: https://github.com/optimizely/csharp-sdk

-2
source

Source: https://habr.com/ru/post/1305335/


All Articles