I am starting in asp.net Mvc and making test, i am doing a simple chat using PubNub api and i want finish it using only razor code only and one page only.
Model Chat.cs:
 namespace SimpleChat.Models
{
public class Chat
{
    public string NuevoMensaje { get; set; }
    public string TextArea { get; set; }
}
}
View:
   @model SimpleChat.Models.Chat
   @using (Html.BeginForm("Index","Chat",FormMethod.Post))
   {
   @Html.LabelFor(model => model.NuevoMensaje, "Nuevo Mensaje")
   @Html.TextBoxFor(model => model.NuevoMensaje) 
   <input type="submit"       class="btn-default" value="Enviar" />
   @Html.TextAreaFor(model => model.TextArea)
  }
Controller:
      static string variante = "";
    public ActionResult Index()
    {
        pubnub.Subscribe<string>("Chat", subCallback, connecCallBack, errorCallback);
        //Chat nuevochat = new Chat();
        return View();
    }
    [HttpPost]
    public ActionResult Index(Chat chat)
    {
        pubnub.Publish<string>("Chat", chat.NuevoMensaje, userCallback, puberror);
        chat.NuevoMensaje = "";
        chat.TextArea =variante;
        return View("Index",chat);
    }
    private void subCallback(string obj)
    {
        string[] retorno = obj.Split(',','"');
        variante += "Richard dice:" + retorno[0] + "\n";
    }
When i press submit don't get the new data, why?