views:

98

answers:

2

Hi

I would like to build a very simple application - Automated FAQ. I searched the internet and found some information about different approaches but there is no .Net specific example. Do you have som experience of building such application or maybe know some .Net specific examples? It would be very interesting to take a look at one. Here is an example http://193.108.42.79/ikea-us/cgi-bin/ikea-us.cgi Thanks in advance.

A: 

Some thought

You may need to create a Decision Tree based structure.

Binary Decision Tree

or you can have a Priority Queue based implementation of BDD at

Here

saurabh
+2  A: 

What you're trying to build is a chatterbot.
There are many ways to go about it, not many of them trivial.
Probably the simplest approach would be to incrementally build an AIML knowledge base together with an AIML platform of your choice (RebeccaAIML support C#).

Eugen Constantin Dinca