@* Comments *@ @model IEnumerable @{ ViewData["Title"] = ".NET Lex ChatBot"; } .NET Amazon Lex ChatBot - Sample Application (BookTrip)

A .NET ChatBot Using Lex

Hello from the View Template

Amazon Lex - BookTrip

This little chatbot shows how easy it is to incorporate Amazon Lex into your web pages. Try it out.

@foreach (var ChatMsg in Model) { if (ChatMsg.MsgType == dotnetLexChatBot.Models.MessageType.UserMessage) {
@ChatMsg.ChatMessage
} else {
@ChatMsg.ChatMessage
} }
@using (Html.BeginForm("GetChatMessage","HelloChatBot")) { }