public void ProcessRequest(HttpContext context) { PlayerConnection.Initialize(); string cmd = context.Request.QueryString["cmd"]; PlayerConnection.PushCommand(cmd); }
protected void TextBox2_TextChanged(object sender, EventArgs e) { PlayerConnection.PushCommand(TextBoxInput.Text); PlayerConnection._sb.AppendLine(TextBoxInput.Text); TextBoxInput.Text = string.Empty; }